aboutsummaryrefslogtreecommitdiff
path: root/CMakePresets.json
diff options
context:
space:
mode:
Diffstat (limited to 'CMakePresets.json')
-rw-r--r--CMakePresets.json17
1 files changed, 16 insertions, 1 deletions
diff --git a/CMakePresets.json b/CMakePresets.json
index 208a085..84c0aff 100644
--- a/CMakePresets.json
+++ b/CMakePresets.json
@@ -9,6 +9,16 @@
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake"
}
+ },
+ {
+ "name": "linux tests",
+ "generator": "Unix Makefiles",
+ "binaryDir": "${sourceDir}/build/linux",
+ "cacheVariables": {
+ "CMAKE_BUILD_TYPE": "Release",
+ "CMAKE_TOOLCHAIN_FILE": "$env{VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake",
+ "AEDILE_INCLUDE_TESTS": "ON"
+ }
}
],
"buildPresets": [
@@ -16,12 +26,17 @@
"name": "linux",
"configurePreset": "linux",
"jobs": 4
+ },
+ {
+ "name": "linux tests",
+ "configurePreset": "linux tests",
+ "jobs": 4
}
],
"testPresets": [
{
"name": "linux",
- "configurePreset": "linux"
+ "configurePreset": "linux tests"
}
]
}