diff options
Diffstat (limited to 'tests/CMakePresets.json')
| -rw-r--r-- | tests/CMakePresets.json | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/CMakePresets.json b/tests/CMakePresets.json index d8a41850..2f9a64c7 100644 --- a/tests/CMakePresets.json +++ b/tests/CMakePresets.json @@ -468,6 +468,28 @@ } }, { + "name": "win_vk", + "binaryDir": "build/win_vk", + "cacheVariables": { + "SOKOL_BACKEND": "SOKOL_VULKAN" + } + }, + { + "name": "win_vk_analyze", + "generator": "Ninja", + "binaryDir": "build/win_vk_analyze", + "cacheVariables": { + "SOKOL_BACKEND": "SOKOL_VULKAN", + "CMAKE_BUILD_TYPE": "Debug", + "USE_ANALYZER": { + "type": "BOOL", + "value": "ON" + }, + "CMAKE_C_COMPILER": "clang", + "CMAKE_CXX_COMPILER": "clang++" + } + }, + { "name": "win_gl", "binaryDir": "build/win_gl", "cacheVariables": { @@ -694,6 +716,16 @@ "configurePreset": "android_release" }, { + "name": "win_vk_debug", + "configurePreset": "win_vk", + "configuration": "Debug" + }, + { + "name": "win_vk_release", + "configurePreset": "win_vk", + "configuration": "Release" + }, + { "name": "win_gl_debug", "configurePreset": "win_gl", "configuration": "Debug" |