aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwsnipex <wsnipex@a1.net>2016-11-22 14:10:17 +0100
committerwsnipex <wsnipex@a1.net>2016-11-23 11:09:06 +0100
commit5adc1e9798036bc9943bb120853d93f3f24def75 (patch)
tree45defb94690dbd50e2efb5979d5dcdbcfc4faa9c
parent8558d672e98b62f3ea0126ba491376add8ed71cb (diff)
[cmake] fix linking on linux when not hardcoding python libs
partially reverts 3eb46877
-rw-r--r--project/cmake/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/project/cmake/CMakeLists.txt b/project/cmake/CMakeLists.txt
index c2fb8e18d5..fa1156da4a 100644
--- a/project/cmake/CMakeLists.txt
+++ b/project/cmake/CMakeLists.txt
@@ -331,7 +331,7 @@ else()
endif()
add_dependencies(${APP_NAME_LC} ${APP_NAME_LC}-libraries export-files pack-skins)
whole_archive(_MAIN_LIBRARIES ${core_DEPENDS})
-target_link_libraries(${APP_NAME_LC} ${_MAIN_LIBRARIES} lib${APP_NAME_LC})
+target_link_libraries(${APP_NAME_LC} ${_MAIN_LIBRARIES} lib${APP_NAME_LC} ${DEPLIBS})
unset(_MAIN_LIBRARIES)
if(WIN32)