https://github.com/philsquared/Catch
Raw File
Tip revision: 8ac8190e494a381072c89f5e161b92a08d98b37b authored by Martin Hořeňovský on 01 March 2024, 21:07:10 UTC
v3.5.3
Tip revision: 8ac8190
CMakePresets.json
{
    "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",
                "CATCH_ENABLE_CMAKE_HELPER_TESTS": "ON"
            }
        }
    ]   
}
back to top