retro-imager/dependencies/drivelist/binding.gyp
2020-03-04 16:55:40 +01:00

62 lines
1.3 KiB
Python

{
"targets": [
{
"target_name": "drivelist",
"include_dirs" : [
"<!(node -e \"require('nan')\")",
"."
],
"sources": [
"src/drivelist.cpp",
"src/device-descriptor.cpp",
],
"msvs_settings": {
"VCLinkerTool": {
"SetChecksum": "true"
},
"VCCLCompilerTool": {
"ExceptionHandling": 1,
"AdditionalOptions": [
"/EHsc"
]
}
},
"conditions": [
[ 'OS=="mac"', {
"xcode_settings": {
"OTHER_CPLUSPLUSFLAGS": [
"-stdlib=libc++"
],
"OTHER_LDFLAGS": [
"-stdlib=libc++"
]
},
"sources": [
"src/darwin/list.mm",
"src/darwin/REDiskList.m"
],
"link_settings": {
"libraries": [
"-framework Carbon,DiskArbitration"
]
}
}],
[ 'OS=="win"', {
"sources": [
"src/windows/list.cpp"
],
"libraries": [
"-lKernel32.lib",
"-lShell32.lib",
"-lSetupAPI.lib"
]
}],
[ 'OS=="linux"', {
"sources": [
"src/linux/list.cpp"
]
}]
]
}
]
}