https://github.com/philsquared/Catch
Raw File
Tip revision: c837cb4a8aaa2064f63e67ed0a7f7055dbf159c5 authored by Martin Hořeňovský on 22 January 2023, 18:43:11 UTC
v3.3.0
Tip revision: c837cb4
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"
            }
        }
    ]   
}
back to top