-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
114 lines (114 loc) · 3.46 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
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 25,
"patch": 0
},
"configurePresets": [
{
"name": "linux-debug-x86_64",
"displayName": "Linux x86_64 (Debug)",
"description": "x86_64",
"binaryDir": "${sourceDir}/build/linux-x86_64/debug",
"cacheVariables": {
"PROCESSOR": "x86-64",
"CMAKE_SYSTEM_NAME": "Linux",
"CMAKE_SYSTEM_PROCESSOR": "x86_64",
"CMAKE_C_COMPILER": "x86-64-linux-gnu-gcc",
"CMAKE_CXX_COMPILER": "x86-64-linux-gnu-g++",
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "linux-release-x86_64",
"displayName": "Linux x86_64 (Release)",
"description": "x86_64",
"binaryDir": "${sourceDir}/build/linux-x86_64/release",
"cacheVariables": {
"PROCESSOR": "x86-64",
"CMAKE_SYSTEM_NAME": "Linux",
"CMAKE_SYSTEM_PROCESSOR": "x86_64",
"CMAKE_C_COMPILER": "x86-64-linux-gnu-gcc",
"CMAKE_CXX_COMPILER": "x86-64-linux-gnu-g++",
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "linux-debug-aarch64",
"displayName": "Linux aarch64 (Debug)",
"description": "aarch64",
"binaryDir": "${sourceDir}/build/linux-aarch64/debug",
"cacheVariables": {
"PROCESSOR": "armv8-a",
"CMAKE_SYSTEM_NAME": "Linux",
"CMAKE_SYSTEM_PROCESSOR": "aarch64",
"CMAKE_C_COMPILER": "aarch64-linux-gnu-gcc",
"CMAKE_CXX_COMPILER": "aarch64-linux-gnu-g++",
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "linux-release-aarch64",
"displayName": "Linux aarch64 (Release)",
"description": "aarch64",
"binaryDir": "${sourceDir}/build/linux-aarch64/release",
"cacheVariables": {
"PROCESSOR": "armv8-a",
"CMAKE_SYSTEM_NAME": "Linux",
"CMAKE_SYSTEM_PROCESSOR": "aarch64",
"CMAKE_C_COMPILER": "aarch64-linux-gnu-gcc",
"CMAKE_CXX_COMPILER": "aarch64-linux-gnu-g++",
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "win64-debug-mingw32",
"displayName": "Windows (Debug)",
"description": "mingw32",
"binaryDir": "${sourceDir}/build/win64-mingw32/debug",
"cacheVariables": {
"PROCESSOR": "x86-64",
"SDL2_PATH": "mingw_libs/SDL2-2.26.5/x86_64-w64-mingw32",
"SDL2_IMAGE_PATH": "mingw_libs/SDL2_image-2.6.3/x86_64-w64-mingw32",
"BOX2D_PATH": "mingw_libs/box2d/install_mingw",
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_TOOLCHAIN_FILE": "cmake/win64-mingw32.toolchain.cmake"
}
},
{
"name": "win64-release-mingw32",
"displayName": "Windows (Release)",
"description": "mingw32",
"binaryDir": "${sourceDir}/build/win64-mingw32/release",
"cacheVariables": {
"PROCESSOR": "x86-64",
"SDL2_PATH": "mingw_libs/SDL2-2.26.5/x86_64-w64-mingw32",
"SDL2_IMAGE_PATH": "mingw_libs/SDL2_image-2.6.3/x86_64-w64-mingw32",
"BOX2D_PATH": "mingw_libs/box2d/install_mingw",
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_TOOLCHAIN_FILE": "cmake/win64-mingw32.toolchain.cmake"
}
}
],
"packagePresets": [
{
"name": "linux-release-x86_64",
"description": "Package the Linux Release build into some installers like DEB and TGZ",
"displayName": "Linux Package",
"configurePreset": "linux-release-x86_64"
},
{
"name": "linux-release-aarch64",
"description": "Package the Linux Release build into some installers like DEB and TGZ",
"displayName": "Linux Package",
"configurePreset": "linux-release-aarch64"
},
{
"name": "win64-release-mingw32",
"description": "Package the Windows Release build into a ZIP",
"displayName": "Windows ZIP Package",
"configurePreset": "win64-release-mingw32"
}
]
}