This repository was archived by the owner on Aug 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathperfect.gyp
More file actions
90 lines (81 loc) · 1.52 KB
/
perfect.gyp
File metadata and controls
90 lines (81 loc) · 1.52 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
'includes':
[
'../../common.gypi',
],
'targets':
[
{
'target_name': 'perfect',
'type': 'executable',
'toolsets': ['target','host'],
'product_name': 'perfect-<(_toolset)',
'sources':
[
'perfect.c',
],
'variables':
{
'silence_warnings': 1,
},
'msvs_settings':
{
'VCLinkerTool':
{
'SubSystem': '1', # /SUBSYSTEM:CONSOLE
},
},
'xcode_settings':
{
'conditions':
[
[
'OS == "mac" or OS == "ios"',
{
'SDKROOT': '<(host_sdk)',
},
],
[
'OS == "mac" and target_sdk != "macosx10.6"',
{
'ARCHS': '<(host_arch)',
},
],
[
# FIXME Force the perfect executable to be put into
# the target SDK's output directory, so that it
# appears in the PRODUCT_DIR when building against
# the target SDK
'OS == "ios"',
{
'SYMROOT': '$(SOLUTION_DIR)/_build/ios/<(target_sdk)',
'ARCHS': '<(host_arch)',
},
],
],
},
'direct_dependent_settings':
{
'variables':
{
'perfect_path': '<(PRODUCT_DIR)/<(_product_name)',
},
},
'conditions':
[
[
'OS == "ios"',
{
'direct_dependent_settings':
{
'variables':
{
'perfect_path': '<(mac_tools_dir)/perfect-host',
},
},
},
],
],
},
],
}