This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-libzt/examples/node/binding.gyp
2020-08-05 17:42:31 +08:00

30 lines
516 B
Python

{
"targets": [
{
"include_dirs": [
"libzt/include",
],
"includes": [
"auto.gypi"
],
"sources": [
"binding.cc"
],
"conditions":[
["OS=='linux' and target_arch=='x64'", {
"libraries": [ "<(module_root_dir)/libzt/lib/release/linux-x86_64/libzt.a" ]
}],
["OS=='mac' and target_arch=='x64'", {
"libraries": [ "<(module_root_dir)/libzt/lib/release/macos-x86_64/libzt.a" ]
}],
["OS=='win'", {
}]
]
}
],
"includes": [
"auto-top.gypi"
]
}