-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuiohook.gyp
35 lines (35 loc) · 891 Bytes
/
uiohook.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
{
"targets": [{
"target_name": "uiohook",
"type": "static_library",
"sources": [
"libuiohook/include/uiohook.h",
"libuiohook/src/logger.c",
"libuiohook/src/logger.h",
"libuiohook/src/darwin/input_helper.h",
"libuiohook/src/darwin/input_helper.c",
"libuiohook/src/darwin/input_hook.c",
"libuiohook/src/darwin/post_event.c",
"libuiohook/src/darwin/system_properties.c"
],
"include_dirs": [
'node_modules/nan',
'libuiohook/include',
'libuiohook/src',
'libuiohook/src/darwin'
],
"defines": [
'USE_OBJC',
'USE_IOKIT',
'USE_APPLICATION_SERVICES',
'ENABLE_STATIC'
'BUILD_DEMO'
],
"libraries": [
'-framework CoreFoundation',
'-framework Cocoa',
'-framework IOKit',
'-framework Carbon'
]
}]
}