-
Notifications
You must be signed in to change notification settings - Fork 92
/
CMakeUserPresets-example.json
68 lines (67 loc) · 2.54 KB
/
CMakeUserPresets-example.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
{
"version": 2,
"configurePresets": [
{
"name": "windows-base",
"hidden": true,
"displayName": "Windows Base",
"inherits": "ninja",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-windows-release",
"RESINSIGHT_ENABLE_UNITY_BUILD": true,
"RESINSIGHT_ENABLE_GRPC": true,
"CMAKE_PREFIX_PATH": "c:/Qt/6.6.3/msvc2019_64;f:/tools/buildcache/bin",
"RESINSIGHT_GRPC_PYTHON_EXECUTABLE": "c:/Users/MagneSjaastad/AppData/Local/Programs/Python/Python38/python.exe",
"RESINSIGHT_ODB_API_DIR": "c:/odb/odb_2020/odb_api"
}
},
{
"name": "x64-debug",
"displayName": "x64 Debug",
"description": "Target Windows (64-bit) with the Visual Studio development environment. (Debug)",
"inherits": "windows-base",
"cacheVariables": { "CMAKE_BUILD_TYPE": "Debug" }
},
{
"name": "x64-relwithdebinfo",
"displayName": "x64 Release with Debug Info",
"description": "Target Windows (64-bit) with the Visual Studio development environment. (RelWithDebInfo)",
"inherits": "windows-base",
"cacheVariables": { "CMAKE_BUILD_TYPE": "RelWithDebInfo" }
},
{
"name": "x64-release",
"displayName": "x64 Release",
"description": "Target Windows (64-bit) with the Visual Studio development environment. (Release)",
"inherits": "windows-base",
"cacheVariables": { "CMAKE_BUILD_TYPE": "Release" }
},
{
"name": "linux-base",
"hidden": false,
"displayName": "Linux Base",
"inherits": "ninja",
"architecture": {
"value": "x64",
"strategy": "external"
},
"cacheVariables": {
"VCPKG_TARGET_TRIPLET": "x64-linux-release",
"RESINSIGHT_ENABLE_UNITY_BUILD": true,
"RESINSIGHT_ENABLE_GRPC": false,
"CMAKE_PREFIX_PATH": "/home/builder/qt/6.6.3/gcc_64/lib/cmake"
}
},
{
"name": "x64-release",
"displayName": "x64 Release",
"description": "Linux Release",
"inherits": "linux-base",
"cacheVariables": { "CMAKE_BUILD_TYPE": "Release" }
}
]
}