|
@@ -0,0 +1,35 @@
|
|
|
+{
|
|
|
+ "version": 3,
|
|
|
+ "configurePresets": [
|
|
|
+ {
|
|
|
+ "name": "debug",
|
|
|
+ "displayName": "Debug Config",
|
|
|
+ "description": "Debug build using Ninja generator",
|
|
|
+ "generator": "Ninja",
|
|
|
+ "binaryDir": "${sourceDir}/build",
|
|
|
+ "cacheVariables": {
|
|
|
+ "CMAKE_BUILD_TYPE": "Debug",
|
|
|
+ "CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "release",
|
|
|
+ "inherits": "debug",
|
|
|
+ "displayName": "Release Config",
|
|
|
+ "description": "Release build using Ninja generator",
|
|
|
+ "cacheVariables": {
|
|
|
+ "CMAKE_BUILD_TYPE": "Release"
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "buildPresets": [
|
|
|
+ {
|
|
|
+ "name": "debug",
|
|
|
+ "configurePreset": "debug"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "name": "release",
|
|
|
+ "configurePreset": "release"
|
|
|
+ }
|
|
|
+ ]
|
|
|
+}
|