From dda210d2dd52fe8e90f7a1d79700dd0b783f5056 Mon Sep 17 00:00:00 2001 From: Mark Callow Date: Sat, 14 Sep 2024 17:05:41 +0900 Subject: [PATCH] Fix: ensure ktxdiff runs on Apple Silicon. INSTALL_RPATH was not being set meaning macOS could not find libktx. Since cts tests succeeded on CI, which runs on x86_64, assumption is the failure was caused by stricter run time checks on Apple Silicon. --- tests/ktxdiff/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/ktxdiff/CMakeLists.txt b/tests/ktxdiff/CMakeLists.txt index 7aebeff4b1..a594132af3 100644 --- a/tests/ktxdiff/CMakeLists.txt +++ b/tests/ktxdiff/CMakeLists.txt @@ -44,3 +44,5 @@ target_compile_definitions( PRIVATE $ ) + +set_test_properties(ktxdiff)