-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbinding.gyp
44 lines (44 loc) · 1.02 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
{
'targets': [
{
'target_name': 'test_target',
'type': 'executable',
'sources': ['test/test_target.cpp']
},
{
'target_name': 'watch_tests_target',
'type': 'executable',
'sources': ['test/watch_tests_target.cpp']
},
{
'target_name': 'data_tests_target',
'type': 'executable',
'sources': ['test/data_tests_target.cpp']
},
{
'target_name': 'stack_tests_target',
'type': 'executable',
'sources': ['test/stack_tests_target.cpp']
},
{
'target_name': 'break_tests_target',
'type': 'executable',
'sources': ['test/break_tests_target.cpp']
},
{
'target_name': 'exec_tests_target',
'type': 'executable',
'sources': ['test/exec_tests_target.cpp']
},
{
'target_name': 'thread_tests_target',
'type': 'executable',
'sources': ['test/thread_tests_target.cpp'],
'conditions': [
["OS=='linux'", {
'cflags_cc': ['-std=c++11']
}]
]
}
]
}