commit b0cee0b4456734fbfb7b8673d9c68657adf0f949
parent a4f5136539f883c2ae8ef9e95216303044e3c95b
Author: [email protected] <[email protected]>
Date: Mon, 25 Nov 2019 13:20:54 +0000
-faligned-allocation for iOS
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -125,6 +125,9 @@ add_library(kfr INTERFACE)
target_sources(kfr INTERFACE ${KFR_SRC})
target_include_directories(kfr INTERFACE include)
target_compile_options(kfr INTERFACE "$<$<CONFIG:DEBUG>:-DKFR_DEBUG>")
+if (IOS)
+ target_compile_options(kfr INTERFACE -faligned-allocation)
+endif ()
if (NOT IOS)
if (CLANG)
target_compile_options(kfr INTERFACE -Xclang -mstackrealign)