-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathbinding.gyp
More file actions
executable file
·40 lines (40 loc) · 876 Bytes
/
binding.gyp
File metadata and controls
executable file
·40 lines (40 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"targets": [
{
"target_name": "tc_launcher",
"sources": [
"src/native/Launcher.cpp"
],
"conditions": [
["OS==\"win\"", {
"sources": [
"src/native/Win32Launcher.cpp"
],
"defines": [
"WIN32_LEAN_AND_MEAN"
],
"libraries": [
"crypt32.lib"
]
}],
["OS==\"mac\"", {
"sources": [
"src/native/MacLauncher.cpp",
"src/native/CDSACrypt.cpp",
"src/native/CDSACrypt.h"
],
"libraries": [
'CoreFoundation.framework',
'Security.framework'
],
"xcode_settings": {
"OTHER_CFLAGS": [
"-std=c++14",
"-Wno-deprecated-declarations"
],
}
}]
]
}
]
}