-
Notifications
You must be signed in to change notification settings - Fork 3
/
CMakePresets.json
47 lines (47 loc) · 1.22 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
{
"version": 2,
"configurePresets": [
{
"name": "linux",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/build/linux",
"cacheVariables": {
"AEDILE_INCLUDE_TESTS": "OFF",
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_TOOLCHAIN_FILE": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"VCPKG_MANIFEST_MODE": "ON",
"VCPKG_TARGET_TRIPLET": "x64-linux"
}
},
{
"name": "linux tests",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/build/linux",
"cacheVariables": {
"AEDILE_INCLUDE_TESTS": "ON",
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_TOOLCHAIN_FILE": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake",
"VCPKG_MANIFEST_MODE": "ON",
"VCPKG_TARGET_TRIPLET": "x64-linux"
}
}
],
"buildPresets": [
{
"name": "linux",
"configurePreset": "linux",
"jobs": 4
},
{
"name": "linux tests",
"configurePreset": "linux tests",
"jobs": 4
}
],
"testPresets": [
{
"name": "linux",
"configurePreset": "linux tests"
}
]
}