From 7a45fd1b70589a871d41a2ef4a02e85477ad2887 Mon Sep 17 00:00:00 2001 From: Silvio Kunaschk Date: Tue, 7 May 2019 19:09:36 +0200 Subject: [PATCH] try fix CMake --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2352a64f..b59314ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -47,7 +47,7 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Linux") set_target_properties(${RACK_APP} PROPERTIES LINK_FLAGS -rdynamic) elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin") target_compile_definitions(${RACK_APP} PRIVATE ARCH_MAC) - set_target_properties(${RACK_APP} PROPERTIES LINK_FLAGS -export_dynamic "-undefined dynamic_lookup") + set_target_properties(${RACK_APP} PROPERTIES LINK_FLAGS "-export_dynamic -undefined dynamic_lookup") endif () target_include_directories(${RACK_APP} PRIVATE include)