-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
38 lines (38 loc) · 1.27 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
{
"cmakeMinimumRequired" : {
"major" : 3,
"minor" : 20,
"patch" : 0
},
"version" : 3,
"configurePresets" : [
{
"name" : "debug",
"displayName" : "Debug - (Linux) Ninja and Clang",
"description" : "Erarnitox's recommended settings for a debug build. Uses clang and Ninja",
"generator" : "Ninja",
"binaryDir" : "${sourceDir}/debug",
"cacheVariables" : {
"CMAKE_EXPORT_COMPILE_COMMANDS" : true,
"CMAKE_BUILD_TYPE" : "Debug",
"CMAKE_INSTALL_PREFIX" : "${sourceDir}/debug",
"CMAKE_CXX_COMPILER": "clang++",
"CMAKE_BUILD_WITH_INSTALL_RPATH": true
}
},
{
"name" : "release",
"displayName" : "Release - (Linux) Ninja and Clang",
"description" : "Erarnitox's recommended settings for a release build. Uses clang and Ninja",
"generator" : "Ninja",
"binaryDir" : "${sourceDir}/release",
"cacheVariables" : {
"CMAKE_EXPORT_COMPILE_COMMANDS" : false,
"CMAKE_BUILD_TYPE" : "Release",
"CMAKE_INSTALL_PREFIX" : "${sourceDir}/release",
"CMAKE_CXX_COMPILER": "clang++",
"CMAKE_BUILD_WITH_INSTALL_RPATH": true
}
}
]
}