diff options
| author | Andre Weissflog <floooh@gmail.com> | 2022-11-20 12:57:00 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2022-11-20 12:57:00 +0100 |
| commit | 50a9bc6601739f963ad894c8951c2e2a3123ecad (patch) | |
| tree | 49668c1f75d561c7dbb361638560cccadcec18fb /tests/CMakePresets.json | |
| parent | 8a94ab86fc5190b1bc27e377bbe4acde25030193 (diff) | |
cmake presets support for UWP tests
Diffstat (limited to 'tests/CMakePresets.json')
| -rw-r--r-- | tests/CMakePresets.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/CMakePresets.json b/tests/CMakePresets.json index abd16833..a651e3c3 100644 --- a/tests/CMakePresets.json +++ b/tests/CMakePresets.json @@ -277,6 +277,15 @@ "cacheVariables": { "SOKOL_BACKEND": "SOKOL_D3D11" } + }, + { + "name": "win_uwp", + "binaryDir": "build/win_uwp", + "cacheVariables": { + "SOKOL_BACKEND": "SOKOL_D3D11", + "CMAKE_SYSTEM_NAME": "WindowsStore", + "CMAKE_SYSTEM_VERSION": "10.0.19041.0 " + } } ], "buildPresets": [ @@ -427,6 +436,16 @@ "name": "win_d3d11_release", "configurePreset": "win_d3d11", "configuration": "Release" + }, + { + "name": "win_uwp_debug", + "configurePreset": "win_uwp", + "configuration": "Debug" + }, + { + "name": "win_uwp_release", + "configurePreset": "win_uwp", + "configuration": "Release" } ] } |