-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,44 @@ | ||
{ | ||
"version": 4, | ||
"configurePresets": | ||
[ | ||
"version": 3, | ||
"cmakeMinimumRequired": { | ||
"major": 3, | ||
"minor": 14, | ||
"patch": 0 | ||
}, | ||
"configurePresets": [ | ||
{ | ||
"name": "default", | ||
"displayName": "Default Config", | ||
"description": "Build using Ninja generator", | ||
"description": "Default build using Ninja generator", | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/build/${presetName}", | ||
"binaryDir": "${sourceDir}/build/${hostSystemName}/${presetName}", | ||
"hidden": true | ||
}, | ||
{ | ||
"name": "Debug", | ||
"displayName": "Debug - Ninja", | ||
"displayName": "Debug", | ||
"inherits": "default", | ||
"cacheVariables": | ||
{ | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug" | ||
} | ||
}, | ||
{ | ||
"name": "Release", | ||
"displayName": "Release - Ninja", | ||
"displayName": "Release", | ||
"inherits": "default", | ||
"cacheVariables": | ||
{ | ||
"CMAKE_BUILD_TYPE": "Release" | ||
} | ||
}, | ||
{ | ||
"name": "Windows/Debug", | ||
"description": "Debug configuration for building with Visual Studio", | ||
"displayName": "Debug - Visual Studio 2022", | ||
"generator": "Visual Studio 17 2022", | ||
"inherits": "default", | ||
"cacheVariables": | ||
{ | ||
"CMAKE_BUILD_TYPE": "Debug" | ||
} | ||
}, | ||
{ | ||
"name": "Windows/Release", | ||
"description": "Release configuration for building with Visual Studio", | ||
"displayName": "Release - Visual Studio 2022", | ||
"generator": "Visual Studio 17 2022", | ||
"inherits": "default", | ||
"cacheVariables": | ||
{ | ||
"CMAKE_BUILD_TYPE": "Release" | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "RelWithDebInfo" | ||
} | ||
} | ||
], | ||
"buildPresets": | ||
[ | ||
"buildPresets": [ | ||
{ | ||
"name": "Debug", | ||
"configurePreset": "Debug" | ||
}, | ||
{ | ||
"name": "Release", | ||
"configurePreset": "Release" | ||
}, | ||
{ | ||
"name": "Windows/Debug", | ||
"configurePreset": "Windows/Debug" | ||
}, | ||
{ | ||
"name": "Windows/Release", | ||
"configurePreset": "Windows/Release" | ||
} | ||
] | ||
} | ||
} |