From e8f4b60e62b326221ed128a76a864a4f6d76fbf0 Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Sat, 26 Apr 2025 18:20:10 -0600 Subject: [PATCH] Add more useful preset settings --- CMakePresets.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakePresets.json b/CMakePresets.json index 9d103dd3..e9ce875b 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -3,9 +3,13 @@ "configurePresets": [ { "name": "basic-tests", + "binaryDir": "build", + "installDir": "build/install", "displayName": "Basic development build", "description": "Enables development build with basic tests that are cheap to build and run", "cacheVariables": { + "CMAKE_CXX_EXTENSIONS": "OFF", + "CMAKE_CXX_STANDARD_REQUIRED": "ON", "CMAKE_EXPORT_COMPILE_COMMANDS": "ON", "CATCH_DEVELOPMENT_BUILD": "ON" }