From b35e24daa7bbe48a56af990de304eac4eef1a671 Mon Sep 17 00:00:00 2001 From: Powei Feng Date: Wed, 26 Jul 2023 19:11:50 -0700 Subject: [PATCH] gltfio: exclude unsupported platforms from test (#7000) --- libs/gltfio/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gltfio/CMakeLists.txt b/libs/gltfio/CMakeLists.txt index 8354d394b7..66b8db65de 100644 --- a/libs/gltfio/CMakeLists.txt +++ b/libs/gltfio/CMakeLists.txt @@ -214,7 +214,7 @@ add_custom_target(test_gltfio_files DEPENDS ${GLTF_TEST_FILES}) # The following tests rely on private APIs that are stripped # away in Release builds -if (TNT_DEV) +if (TNT_DEV AND NOT WEBGL AND NOT ANDROID AND NOT IOS) set(TEST_TARGET test_gltfio) add_executable(${TEST_TARGET} test/gltfio_test.cpp)