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

31 lines
555 B
Plaintext
Raw Normal View History

2020-08-04 05:06:59 +08:00
{
"targets": [
{
"include_dirs": [
2020-08-04 16:47:28 +08:00
"libzt/lib/release/linux-x86_64",
"libzt/include",
2020-08-04 05:06:59 +08:00
],
"includes": [
"auto.gypi"
],
"sources": [
"binding.cc"
2020-08-04 16:47:28 +08:00
],
"conditions":[
["OS=='linux' and target_arch=='x64'", {
"libraries": [ "<(module_root_dir)/libzt/lib/release/linux-x86_64/libzt.so" ]
}],
["OS=='mac' and target_arch=='x64'", {
"libraries": [ "<(module_root_dir)/libzt/lib/release/macos-x86_64/libzt.a" ]
}],
["OS=='win'", {
}]
2020-08-04 05:06:59 +08:00
]
}
],
"includes": [
"auto-top.gypi"
]
}