1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
From: =?utf-8?q?Timo_R=C3=B6hling?= <roehling@debian.org>
Date: Wed, 27 Jul 2022 00:52:18 +0200
Subject: Use libastcenc library name
---
Source/cmake_core.cmake | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/Source/cmake_core.cmake b/Source/cmake_core.cmake
index 4900a77..9c517ca 100644
--- a/Source/cmake_core.cmake
+++ b/Source/cmake_core.cmake
@@ -15,11 +15,7 @@
# under the License.
# ----------------------------------------------------------------------------
-if(${UNIVERSAL_BUILD})
- set(ASTC_TARGET astc${CODEC})
-else()
- set(ASTC_TARGET astc${CODEC}-${ISA_SIMD})
-endif()
+set(ASTC_TARGET astc${CODEC})
project(${ASTC_TARGET})
|