forked from muffinista/hide-cursor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
binding.gyp
40 lines (40 loc) · 879 Bytes
/
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
39
40
{
"targets": [
{
"target_name": "HideCursor",
"sources": [ "HideCursor.cc" ],
"include_dirs": [
"<!(node -e \"require('nan')\")"
],
'cflags': [
'-Wall',
'-Wparentheses',
'-Winline',
'-Wbad-function-cast',
'-Wdisabled-optimization'
],
'conditions': [
['OS == "mac"', {
'defines': ['IS_MAC'],
'include_dirs': [
'System/Library/Frameworks/Carbon.Framework/Headers'
],
'link_settings': {
'libraries': [
'-framework Carbon',
'-framework AppKit',
]
},
'xcode_settings': {
'OTHER_CFLAGS': [
'-ObjC++'
]
}
}],
["OS=='win'", {
'defines': ['IS_WINDOWS']
}]
]
}
]
}