From b9f349cf303b782a38ad765952edd89275e17aa4 Mon Sep 17 00:00:00 2001 From: Josua Grawitter Date: Thu, 8 Jul 2010 13:13:10 +0200 Subject: [PATCH] Explicitly link MyGUI to it's dependencies Again courtesy of "ld --no-add-needed" by Fedora 13. Maybe we should send this upstream to the MyGUI developers. Signed-off-by: Josua Grawitter --- extern/mygui_3.0.1/MyGUIEngine/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/extern/mygui_3.0.1/MyGUIEngine/CMakeLists.txt b/extern/mygui_3.0.1/MyGUIEngine/CMakeLists.txt index 4ca3a55751..2089470b4d 100644 --- a/extern/mygui_3.0.1/MyGUIEngine/CMakeLists.txt +++ b/extern/mygui_3.0.1/MyGUIEngine/CMakeLists.txt @@ -24,3 +24,5 @@ if (MYGUI_USE_FREETYPE) ${FREETYPE_LIBRARIES} ) endif() + +target_link_libraries(${PROJECT_NAME} ${CMAKE_DL_LIBS} uuid)