mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-19 08:25:21 +01:00
Qt/QML edition
This commit is contained in:
commit
d7b361ba44
2168 changed files with 721948 additions and 0 deletions
66
dependencies/mountutils/binding.gyp
vendored
Normal file
66
dependencies/mountutils/binding.gyp
vendored
Normal file
|
@ -0,0 +1,66 @@
|
|||
{
|
||||
"targets": [
|
||||
{
|
||||
"target_name": "MountUtils",
|
||||
"include_dirs" : [
|
||||
"<!(node -e \"require('nan')\")"
|
||||
],
|
||||
"sources": [
|
||||
"src/mountutils.cpp",
|
||||
"src/worker-unmount.cpp",
|
||||
"src/worker-eject.cpp"
|
||||
],
|
||||
"msvs_settings": {
|
||||
"VCLinkerTool": {
|
||||
"SetChecksum": "true"
|
||||
},
|
||||
"VCCLCompilerTool": {
|
||||
"ExceptionHandling": 1,
|
||||
"AdditionalOptions": [
|
||||
"/EHsc"
|
||||
]
|
||||
}
|
||||
},
|
||||
'conditions': [
|
||||
|
||||
[ 'OS=="linux"', {
|
||||
"sources": [
|
||||
"src/linux/functions.cpp"
|
||||
],
|
||||
} ],
|
||||
|
||||
[ 'OS=="win"', {
|
||||
"sources": [
|
||||
"src/windows/functions.cpp"
|
||||
],
|
||||
"libraries": [
|
||||
"-lKernel32.lib",
|
||||
"-lSetupAPI.lib",
|
||||
"-lCfgmgr32.lib"
|
||||
],
|
||||
} ],
|
||||
|
||||
[ 'OS=="mac"', {
|
||||
"xcode_settings": {
|
||||
"OTHER_CPLUSPLUSFLAGS": [
|
||||
"-stdlib=libc++"
|
||||
],
|
||||
"OTHER_LDFLAGS": [
|
||||
"-stdlib=libc++"
|
||||
]
|
||||
},
|
||||
"sources": [
|
||||
"src/darwin/functions.cpp"
|
||||
],
|
||||
"link_settings": {
|
||||
"libraries": [
|
||||
"DiskArbitration.framework",
|
||||
"Foundation.framework",
|
||||
],
|
||||
},
|
||||
} ],
|
||||
|
||||
],
|
||||
}
|
||||
],
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue