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
Chia-liang Kao 06a14e718b Add --libs-only-L to pkg-config
so we get -L/usr/loca/lib and actually build
2015-03-24 23:12:32 +08:00

18 lines
377 B
Python

{
"targets": [
{
"target_name": "fuse_bindings",
"sources": [ "fuse-bindings.cc" ],
"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)"
]
}
}
]
}