1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 17:59:55 +02:00
Oinktube/node_modules/leveldown/binding.gyp
2022-07-15 11:08:01 -03:00

52 lines
1.3 KiB
Python

{
"targets": [{
"target_name": "leveldown",
"conditions": [
["OS == 'win'", {
"defines": [
"_HAS_EXCEPTIONS=0"
],
"msvs_settings": {
"VCCLCompilerTool": {
"RuntimeTypeInfo": "false",
"EnableFunctionLevelLinking": "true",
"ExceptionHandling": "2",
"DisableSpecificWarnings": [ "4355", "4530" ,"4267", "4244", "4506" ]
}
}
}],
["OS == 'linux'", {
"cflags": [],
"cflags!": [ "-fno-tree-vrp"]
}],
["OS == 'mac'", {
"cflags+": ["-fvisibility=hidden"],
"xcode_settings": {
"GCC_SYMBOLS_PRIVATE_EXTERN": "YES" # -fvisibility=hidden
}
}],
["OS == 'android'", {
"cflags": [ "-fPIC" ],
"ldflags": [ "-fPIC" ],
"cflags!": [
"-fno-tree-vrp",
"-mfloat-abi=hard",
"-fPIE"
],
"ldflags!": [ "-fPIE" ]
}],
["target_arch == 'arm'", {
"cflags": [ "-mfloat-abi=hard" ]
}]
],
"dependencies": [
"<(module_root_dir)/deps/leveldb/leveldb.gyp:leveldb"
],
"include_dirs" : [
"<!(node -e \"require('napi-macros')\")"
],
"sources": [
"binding.cc"
]
}]
}