Files
wifi-densepose/examples/meta-cognition-spiking-neural-network/demos/snn/binding.gyp
ruv d803bfe2b1 Squashed 'vendor/ruvector/' content from commit b64c2172
git-subtree-dir: vendor/ruvector
git-subtree-split: b64c21726f2bb37286d9ee36a7869fef60cc6900
2026-02-28 14:39:40 -05:00

32 lines
936 B
Python

{
"targets": [
{
"target_name": "snn_simd",
"sources": ["native/snn_simd.cpp"],
"include_dirs": [
"<!@(node -p \"require('node-addon-api').include\")"
],
"dependencies": [
"<!(node -p \"require('node-addon-api').gyp\")"
],
"cflags!": ["-fno-exceptions"],
"cflags_cc!": ["-fno-exceptions"],
"cflags": ["-msse4.1", "-mavx", "-O3", "-ffast-math"],
"cflags_cc": ["-msse4.1", "-mavx", "-O3", "-ffast-math"],
"defines": ["NAPI_DISABLE_CPP_EXCEPTIONS"],
"xcode_settings": {
"GCC_ENABLE_CPP_EXCEPTIONS": "YES",
"CLANG_CXX_LIBRARY": "libc++",
"MACOSX_DEPLOYMENT_TARGET": "10.7",
"OTHER_CFLAGS": ["-msse4.1", "-mavx", "-O3", "-ffast-math"]
},
"msvs_settings": {
"VCCLCompilerTool": {
"ExceptionHandling": 1,
"AdditionalOptions": ["/arch:AVX", "/O2"]
}
}
}
]
}