-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
60 lines (60 loc) · 2.16 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
{
"version": 2,
"configurePresets": [
{
"name": "Debug",
"displayName": "Debug Configuration",
"description": "Ninja build system is used for debugging.",
"generator": "Ninja",
"binaryDir": "${sourceDir}/Binaries/${presetName}/Intermediate",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_TOOLCHAIN_FILE": "",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/Binaries/${presetName}/Output",
"CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG": "${sourceDir}/Binaries/${presetName}/Intermediate",
"CMAKE_C_COMPILER": "clang",
"CMAKE_CXX_COMPILER": "clang++",
"CMAKE_OSX_ARCHITECTURES": "x86_64"
}
},
{
"name": "Release",
"displayName": "Release Configuration",
"description": "Ninja build system is used for release.",
"generator": "Ninja",
"binaryDir": "${sourceDir}/Binaries/${presetName}/Intermediate",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_TOOLCHAIN_FILE": "",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/Binaries/${presetName}/Output",
"CMAKE_ARCHIVE_OUTPUT_DIRECTORY_DEBUG": "${sourceDir}/Binaries/${presetName}/Intermediate",
"CMAKE_C_COMPILER": "clang",
"CMAKE_CXX_COMPILER": "clang++",
"CMAKE_PREFIX_PATH": "/Users/dogukanarat/Qt/5.12.12/clang_64/lib/cmake/Qt5",
"CMAKE_OSX_ARCHITECTURES": "x86_64"
}
}
],
"buildPresets": [
{
"name": "Debug",
"description": "",
"displayName": "",
"configurePreset": "Debug"
},
{
"name": "Release",
"description": "",
"displayName": "",
"configurePreset": "Release"
}
],
"testPresets": [
{
"name": "GoogleTest",
"description": "Google test framework",
"displayName": "GTest",
"configurePreset": "Debug"
}
]
}