mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Add basic CMake presets
This commit is contained in:
parent
715cd25081
commit
4a2eb90302
25
CMakePresets.json
Normal file
25
CMakePresets.json
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"version": 3,
|
||||||
|
"configurePresets": [
|
||||||
|
{
|
||||||
|
"name": "basic-tests",
|
||||||
|
"displayName": "Basic development build",
|
||||||
|
"description": "Enables development build with basic tests that are cheap to build and run",
|
||||||
|
"cacheVariables": {
|
||||||
|
"CATCH_DEVELOPMENT_BUILD": "ON"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "all-tests",
|
||||||
|
"inherits": "basic-tests",
|
||||||
|
"displayName": "Full development build",
|
||||||
|
"description": "Enables development build with examples and ALL tests",
|
||||||
|
"cacheVariables": {
|
||||||
|
"CATCH_BUILD_EXAMPLES": "ON",
|
||||||
|
"CATCH_BUILD_EXTRA_TESTS": "ON",
|
||||||
|
"CATCH_BUILD_SURROGATES": "ON",
|
||||||
|
"CATCH_ENABLE_CONFIGURE_TESTS": "ON"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user