-
Notifications
You must be signed in to change notification settings - Fork 0
/
binding.gyp
66 lines (66 loc) · 2 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
{
'variables': {
'platform': '<(OS)',
},
'conditions': [
['platform == "mac"', {'variables': {'platform': 'darwin'}}],
['platform == "win"', {'variables': {'platform': 'win32'}}],
],
'targets': [
{
'target_name': 'sdl2',
'defines': [
'NAPI_VERSION=3',
'NAPI_DISABLE_CPP_EXCEPTIONS',
],
'sources': [
'src/bindings.cpp',
'src/sdl/events.cpp',
'src/sdl/quit.cpp',
'src/sdl/sdl.cpp',
'src/sdl/syswm.cpp',
'src/sdl/video.cpp',
'src/util.cpp',
],
'include_dirs': [
'<(module_root_dir)/deps/sdl2/include',
],
'conditions': [
['platform=="linux"', {
'library_dirs': ['<(module_root_dir)/deps/sdl2/lib/linux/x64'],
'libraries': [
'-Wl,-rpath,<(module_root_dir)/deps/sdl2/lib/linux/x64',
'<(module_root_dir)/deps/sdl2/lib/linux/x64/libSDL2-2.0.so.0'
],
}],
['platform=="darwin"', {
'library_dirs': ['<(module_root_dir)/deps/sdl2/lib/darwin/x64'],
'libraries': [
'-Wl,-rpath,<(module_root_dir)/deps/sdl2/lib/darwin/x64',
'<(module_root_dir)/deps/sdl2/lib/darwin/x64/SDL2.dylib'
],
}],
['platform=="win32"', {
'library_dirs': ['<(module_root_dir)/deps/sdl2/lib/win32/x64'],
'libraries': ['SDL2.lib'],
'defines' : ['WIN32_LEAN_AND_MEAN', 'VC_EXTRALEAN', 'NOMINMAX'],
'msvs_settings' : {
'VCCLCompilerTool' : {
'AdditionalOptions' : ['/O2','/Oy','/GL','/GF','/Gm-','/EHsc','/MT','/GS','/Gy','/GR-','/Gd']
},
'VCLinkerTool' : {
'AdditionalOptions' : ['/OPT:REF','/OPT:ICF','/LTCG']
},
},
'copies':
[
{
'destination': '<(module_root_dir)/build/Release',
'files': ['<(module_root_dir)/deps/sdl2/lib/win32/x64/SDL2.dll']
}
],
}],
],
}
]
}