forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkernel-development.gyp
More file actions
72 lines (64 loc) · 1.15 KB
/
kernel-development.gyp
File metadata and controls
72 lines (64 loc) · 1.15 KB
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
69
70
71
72
{
'variables':
{
'module_name': 'kernel-development',
'module_test_dependencies':
[
'kernel-development',
'engine-common.gyp:security-community',
'../libfoundation/libfoundation.gyp:libFoundation',
'../libgraphics/libgraphics.gyp:libGraphics',
],
'module_test_sources':
[
'<@(engine_test_source_files)',
'<(SHARED_INTERMEDIATE_DIR)/src/startupstack.cpp',
],
'module_test_include_dirs':
[
'include',
'src',
],
'module_test_defines': [ 'MODE_DEVELOPMENT', ],
},
'includes':
[
'../common.gypi',
'engine-sources.gypi',
'../config/cpptest.gypi'
],
'targets':
[
{
'target_name': 'kernel-development',
'type': 'static_library',
'includes':
[
'kernel-mode-template.gypi',
],
'variables':
{
'mode_macro': 'MODE_DEVELOPMENT',
},
'dependencies':
[
'kernel.gyp:kernel',
'../thirdparty/libopenssl/libopenssl.gyp:libopenssl_stubs',
'../thirdparty/libz/libz.gyp:libz',
],
'sources':
[
'<@(engine_development_mode_source_files)',
],
'conditions':
[
[
'mobile != 0',
{
'type': 'none',
},
],
],
},
],
}