This commit is contained in:
2025-11-30 13:30:18 +01:00
parent 7625c52017
commit 3bd71d9934
29 changed files with 25756 additions and 296 deletions

14
binding.gyp Normal file
View File

@@ -0,0 +1,14 @@
{
"targets": [
{
"target_name": "anime_core",
"cflags!": [ "-fno-exceptions" ],
"cflags_cc!": [ "-fno-exceptions" ],
"sources": [ "./src/main.cpp" ],
"include_dirs": [
"<!@(node -p \"require('node-addon-api').include\")"
],
"defines": [ "NAPI_DISABLE_CPP_EXCEPTIONS" ]
}
]
}