mrmBot-Matrix/binding.gyp

20 lines
706 B
Plaintext
Raw Normal View History

{
"targets": [
{
"target_name": "image",
"sources": [ "<!@(node -p \"require('fs').readdirSync('./natives').map(f=>'natives/'+f).join(' ')\")" ],
2020-09-11 20:22:25 +00:00
"cflags!": [ "-fno-exceptions", "<!(pkg-config --cflags Magick++)" ],
"cflags_cc": [ "-std=c++17" ],
2020-09-11 20:22:25 +00:00
"cflags_cc!": [ "-fno-exceptions", "<!(pkg-config --cflags Magick++)" ],
"include_dirs": [
"<!@(node -p \"require('node-addon-api').include\")",
"<!@(pkg-config --cflags-only-I Magick++ | sed 's/^.\{2\}//')"
],
"libraries": [
2020-09-11 20:22:25 +00:00
"<!(pkg-config --libs Magick++)",
],
2021-08-31 21:28:09 +00:00
"defines": ["NAPI_CPP_EXCEPTIONS", "MAGICKCORE_HDRI_ENABLE=0", "MAGICKCORE_QUANTUM_DEPTH=16"]
}
]
2021-12-31 04:45:32 +00:00
}