aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorCharles Giessen <charles@lunarg.com>2025-12-05 17:35:24 -0600
committerCharles Giessen <46324611+charles-lunarg@users.noreply.github.com>2025-12-08 13:21:47 -0700
commit2170c33bb3d2af976a1894666bfd3dc80cbe4da8 (patch)
tree44a1141102c6a1ea99cf2f875ac0969ce331a835 /tests
parent54587dc9ccc739b1b2649d71de20583c3e12ddcb (diff)
downloadusermoji-2170c33bb3d2af976a1894666bfd3dc80cbe4da8.tar.xz
build: Support compilation with MinGW
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 8a35ae36..a1b7250f 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -29,6 +29,11 @@ if (ANDROID)
return()
endif()
+# Testing isn't supported with mingw
+if (MINGW)
+ return()
+endif()
+
find_package(VulkanLoader CONFIG)
find_package(GTest REQUIRED CONFIG QUIET)