forked from mikeseven/node-webgl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
binding.gyp
67 lines (67 loc) · 1.79 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
{
'variables': {
'platform': '<(OS)',
},
'conditions': [
# Replace gyp platform with node platform, blech
['platform == "mac"', {'variables': {'platform': 'darwin'}}],
['platform == "win"', {'variables': {'platform': 'win32'}}],
],
'targets': [
{
'target_name': 'webgl',
'defines': [
'VERSION=0.4.3'
],
'sources': [
'src/bindings.cc',
'src/image.cc',
'src/webgl.cc',
],
'include_dirs': [
"<!(node -e \"require('nan')\")",
'<(module_root_dir)/deps/include',
],
'library_dirs': [
'<(module_root_dir)/deps/<(platform)',
],
'conditions': [
['OS=="mac"',
{
'libraries': ['-lGLEW','-lfreeimage','-framework OpenGL'],
'include_dirs': ['/usr/local/include'],
'library_dirs': ['/usr/local/lib'],
}
],
['OS=="linux"', {'libraries': ['-lfreeimage','-lGLEW','-lGL']}],
['OS=="win"',
{
'include_dirs': [
'./deps/glew/include',
'./deps/FreeImage/include'
],
'library_dirs': [
'./deps/glew/windows/lib/<(target_arch)',
'./deps/FreeImage/windows/lib/<(target_arch)'
],
'libraries': [
'glew32.lib',
'opengl32.lib',
'FreeImage.lib'
],
'defines' : [
'WIN32_LEAN_AND_MEAN',
'VC_EXTRALEAN'
],
'cflags' : [
'/O2','/Oy','/GL','/GF','/Gm-','/EHsc','/MT','/GS','/Gy','/GR-','/Gd','/wd"4530"','/wd"4251"'
],
'ldflags' : [
'/OPT:REF','/OPT:ICF','/LTCG'
]
}
],
],
}
]
}