1
0
mirror of https://github.com/fuse-friends/fuse-native synced 2024-10-27 18:34:01 +00:00
fuse-friends_fuse-native/binding.gyp

47 lines
1.4 KiB
Plaintext
Raw Normal View History

2015-03-12 02:11:29 +00:00
{
"targets": [{
"target_name": "fuse_bindings",
"sources": ["fuse-bindings.cc", "abstractions.cc"],
"conditions": [
['OS!="win"', {
"include_dirs": [
"<!(node -e \"require('nan')\")",
"<!@(pkg-config fuse --cflags-only-I | sed s/-I//g)"
],
"link_settings": {
"libraries": [
"<!@(pkg-config --libs-only-L --libs-only-l fuse)"
]
}
}],
['OS=="win"', {
"include_dirs": [
"<!(node -e \"require('nan')\")",
"D:\\Git-Repos\\dokany\\dokan_fuse\\include"
],
"link_settings": {
"libraries": [
"C:\\Program Files\\Dokan\\DokanLibrary\\dokanfuse.lib"
]
}
}]
],
"configurations": {
"Debug": {
"msvs_settings": {
"VCCLCompilerTool": {
"RuntimeLibrary": 2
}
}
},
"Release": {
"msvs_settings": {
"VCCLCompilerTool": {
"RuntimeLibrary": 2
}
}
}
}
}]
2015-03-12 02:11:29 +00:00
}