aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2023-02-07 19:13:48 +0100
committerAndre Weissflog <floooh@gmail.com>2023-02-07 19:13:48 +0100
commit64632fe844dc564bb8070e199bdaa25138e5cc23 (patch)
treebc7fc48518b3cba0537306a5c7901002523190d8 /tests
parent886f7048af63c597120f2f3c4f51688dc1a4f747 (diff)
tests: remove last UWP remains
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakePresets.json19
-rw-r--r--tests/compile/CMakeLists.txt14
2 files changed, 6 insertions, 27 deletions
diff --git a/tests/CMakePresets.json b/tests/CMakePresets.json
index fba9a2af..dca08c53 100644
--- a/tests/CMakePresets.json
+++ b/tests/CMakePresets.json
@@ -509,15 +509,6 @@
"CMAKE_C_COMPILER": "clang",
"CMAKE_CXX_COMPILER": "clang++"
}
- },
- {
- "name": "win_uwp",
- "binaryDir": "build/win_uwp",
- "cacheVariables": {
- "SOKOL_BACKEND": "SOKOL_D3D11",
- "CMAKE_SYSTEM_NAME": "WindowsStore",
- "CMAKE_SYSTEM_VERSION": "10.0.19041.0 "
- }
}
],
"buildPresets": [
@@ -724,16 +715,6 @@
{
"name": "win_d3d11_analyze",
"configurePreset": "win_d3d11_analyze"
- },
- {
- "name": "win_uwp_debug",
- "configurePreset": "win_uwp",
- "configuration": "Debug"
- },
- {
- "name": "win_uwp_release",
- "configurePreset": "win_uwp",
- "configuration": "Release"
}
]
}
diff --git a/tests/compile/CMakeLists.txt b/tests/compile/CMakeLists.txt
index b8aab2fa..e6645556 100644
--- a/tests/compile/CMakeLists.txt
+++ b/tests/compile/CMakeLists.txt
@@ -41,15 +41,13 @@ if (NOT ANDROID)
set(cxx_sources ${cxx_sources} sokol_fetch.cc)
endif()
-if (NOT UWP)
- if (ANDROID)
- add_library(sokol-compiletest-c SHARED ${c_sources})
- else()
- add_executable(sokol-compiletest-c ${exe_type} sokol_app.c sokol_glue.c ${c_sources})
- endif()
- target_link_libraries(sokol-compiletest-c PUBLIC cimgui nuklear spine)
- configure_c(sokol-compiletest-c)
+if (ANDROID)
+ add_library(sokol-compiletest-c SHARED ${c_sources})
+else()
+ add_executable(sokol-compiletest-c ${exe_type} sokol_app.c sokol_glue.c ${c_sources})
endif()
+target_link_libraries(sokol-compiletest-c PUBLIC cimgui nuklear spine)
+configure_c(sokol-compiletest-c)
if (ANDROID)
add_library(sokol-compiletest-cxx SHARED ${cxx_sources})