-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
140 lines (140 loc) · 3.6 KB
/
CMakePresets.json
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 20,
"patch": 0
},
"configurePresets": [
{
"name": "default",
"displayName": "Default Config (Multi Build)",
"description": "Default build using Ninja Multi-Config generator. Builds both the NES and Native PC version for the current OS",
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/build/",
"cacheVariables": {
"CMAKE_PREFIX_PATH": "${sourceDir}/tools/${hostSystemName}/cc65",
"CMAKE_MODULE_PATH": "${sourceDir}/cmake",
"CMAKE_FRAMEWORK_PATH": "${sourceDir}/tools/${hostSystemName}/famistudio;${sourceDir}/scripts",
"CNES_BUILD_EXAMPLE": "ON"
}
},
{
"name": "nes",
"inherits": "default",
"displayName": "NES Build",
"description": "NES-only build using Ninja Multi-Config generator",
"binaryDir": "${sourceDir}/build/nes",
"toolchainFile": "${sourceDir}/cmake/cc65-toolchain.cmake",
"cacheVariables": {
"CNES_BUILD_SINGLE": "ON"
}
},
{
"name": "native",
"inherits": "default",
"displayName": "Native PC Build",
"description": "Native PC-only build using Ninja Multi-Config generator",
"binaryDir": "${sourceDir}/build/native",
"toolchainFile": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"cacheVariables": {
"VCPKG_OVERLAY_PORTS": "${sourceDir}/ports",
"CNES_BUILD_SINGLE": "ON"
}
},
{
"name": "msvc",
"inherits": "native",
"displayName": "Windows MSVC Build",
"generator": "Visual Studio 16 2019",
"description": "Generates a Visual Studio 2019 solution for the native PC port",
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-windows-static"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "mingw",
"inherits": "native",
"displayName": "Windows MinGW build",
"description": "Builds PC build with MinGW toolset for the native PC port",
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-mingw-static"
}
},
{
"name": "nes-library",
"inherits": "nes",
"displayName": "NES Library Only Build",
"cacheVariables": {
"CNES_BUILD_EXAMPLE": "OFF"
}
},
{
"name": "native-library",
"inherits": "native",
"displayName": "Native PC Library Only Build",
"cacheVariables": {
"CNES_BUILD_EXAMPLE": "OFF"
}
},
{
"name": "msvc-library",
"inherits": "msvc",
"displayName": "Windows MSVC Build",
"cacheVariables": {
"CNES_BUILD_EXAMPLE": "OFF"
}
},
{
"name": "mingw-library",
"inherits": "mingw",
"displayName": "Windows MinGW build",
"cacheVariables": {
"CNES_BUILD_EXAMPLE": "OFF"
}
}
],
"buildPresets": [
{
"name": "default",
"configurePreset": "default"
},
{
"name": "nes",
"configurePreset": "nes"
},
{
"name": "native",
"configurePreset": "native"
},
{
"name": "msvc",
"configurePreset": "msvc"
},
{
"name": "mingw",
"configurePreset": "mingw"
},
{
"name": "nes-library",
"configurePreset": "nes-library"
},
{
"name": "native-library",
"configurePreset": "native-library"
},
{
"name": "msvc-library",
"configurePreset": "msvc-library"
},
{
"name": "mingw-library",
"configurePreset": "mingw-library"
}
]
}