-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbinding._gyp
executable file
·38 lines (38 loc) · 1.13 KB
/
binding._gyp
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
{
"targets": [
{
'defines': [ ],
"target_name": "unity_finder",
'type': 'executable',
"sources": [ ],
'conditions': [
[
'OS=="win"',
{
"sources": [
"src/unity_finder_win/main.c"
],
'link_settings': {
'libraries': [
'kernel32.lib', 'user32.lib', 'version.lib'
]
}
}
],
[
'OS=="mac"',
{
"sources": [
"src/unity_finder_osx/unity_finder_osx/main.m"
],
'link_settings': {
'libraries': [
'$(SDKROOT)/System/Library/Frameworks/Foundation.framework'
]
}
}
]
]
}
]
}