Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
giuliohome committed Nov 14, 2021
1 parent 7100f27 commit 157f03c
Show file tree
Hide file tree
Showing 8 changed files with 12,399 additions and 5,970 deletions.
2 changes: 2 additions & 0 deletions back/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
/node_modules
/build
/lib
*/private.*
27 changes: 27 additions & 0 deletions back/binding.gyp
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"targets": [
{
"target_name": "users",
"sources": ["users.cc"],
"dependencies": [
"<!(node -p \"require('node-addon-api').gyp\")"
],
"include_dirs": [
"<!@(node -p \"require('node-addon-api').include\")",
],
"cflags!": [ "-fno-exceptions" ],
"cflags_cc!": [ "-fno-exceptions" ],
"xcode_settings": {
"GCC_ENABLE_CPP_EXCEPTIONS": "YES",
"CLANG_CXX_LIBRARY": "libc++",
"MACOSX_DEPLOYMENT_TARGET": "10.7",
},
"msvs_settings": {
"VCCLCompilerTool": {
"ExceptionHandling": 1,
"AdditionalOptions": [ "/std:c++17" ]
}
}
}
]
}
Loading

0 comments on commit 157f03c

Please sign in to comment.