mirror of
https://github.com/fuse-friends/fuse-native
synced 2024-10-27 18:34:01 +00:00
4aa5a3da3a
dokany found at `dokan-dev/dokany`
47 lines
1.4 KiB
Python
47 lines
1.4 KiB
Python
{
|
|
"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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}]
|
|
}
|