forked from praydog/REFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
34 lines (34 loc) · 1.04 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
{
"version": 2,
"configurePresets": [
{
"name": "MSVC Release",
"displayName": "Visual Studio Community 2019 Release - amd64",
"description": "Using compilers for Visual Studio 16 2019 (x64 architecture)",
"generator": "Visual Studio 16 2019",
"toolset": "host=x64",
"architecture": "x64",
"binaryDir": "${sourceDir}/build/",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/"
}
}
],
"buildPresets": [
{
"name": "Release",
"description": "",
"displayName": "Release",
"configurePreset": "MSVC Release",
"configuration": "Release"
},
{
"name": "RelWithDebInfo",
"description": "",
"displayName": "RelWithDebInfo",
"configurePreset": "MSVC Release",
"configuration": "RelWithDebInfo"
}
]
}