forked from mikeseven/node-glfw
-
Notifications
You must be signed in to change notification settings - Fork 3
/
binding.gyp
68 lines (68 loc) · 1.82 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
'variables': {
'platform': '<(OS)',
},
'conditions': [
# Replace gyp platform with node platform, blech
['platform == "mac"', {'variables': {
'platform': 'darwin',
}}],
['platform == "win"', {'variables': {'platform': 'win32'}}],
],
'targets': [
{
'target_name': 'glfw',
'defines': [
'VERSION=0.4.6',
],
'sources': [
'src/glfw.cc'
],
'include_dirs': [
"<!(node -e \"require('nan')\")",
'./deps/include',
],
'conditions': [
['OS=="linux"', {
'libraries': [
'<!@(pkg-config --libs glfw3 glew)',
'-lXrandr','-lXinerama','-lXxf86vm','-lXcursor','-lXi',
'-lrt','-lm'
]
}],
['OS=="mac"', {
'include_dirs': [ '<!@(pkg-config glfw3 glew --cflags-only-I | sed s/-I//g)'],
'libraries': [ '<!@(pkg-config --libs glfw3 glew)', '-framework OpenGL'],
'library_dirs': ['/usr/local/lib'],
}],
['OS=="win"', {
'include_dirs': [
'./deps/include',
],
'library_dirs': [
'./deps/windows/lib/<(target_arch)',
],
'libraries': [
'FreeImage.lib',
'glfw3dll.lib',
'glew32.lib',
'opengl32.lib'
],
'defines' : [
'WIN32_LEAN_AND_MEAN',
'VC_EXTRALEAN'
],
'msvs_settings' : {
'VCCLCompilerTool' : {
'AdditionalOptions' : ['/O2','/Oy','/GL','/GF','/Gm-','/EHsc','/MT','/GS','/Gy','/GR-','/Gd']
},
'VCLinkerTool' : {
'AdditionalOptions' : ['/OPT:REF','/OPT:ICF','/LTCG']
},
},
},
],
],
}
]
}