Move some out-dated examples to attic, update README.md

This commit is contained in:
Joseph Henry
2021-05-05 16:43:33 -07:00
parent 90c4744a3b
commit 5a668ceeba
16 changed files with 33 additions and 198 deletions

29
attic/nodejs/binding.gyp Normal file
View File

@@ -0,0 +1,29 @@
{
"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"
]
}