forked from hasufell/hasufell-repository
21 lines
398 B
Diff
21 lines
398 B
Diff
|
From: Julian Ospald <hasufell@gentoo.org>
|
||
|
Date: Fri Jun 15 10:42:42 UTC 2012
|
||
|
Subject: build system
|
||
|
|
||
|
fix underlinking
|
||
|
|
||
|
--- MyGUIEngine/CMakeLists.txt
|
||
|
+++ MyGUIEngine/CMakeLists.txt
|
||
|
@@ -48,7 +48,10 @@
|
||
|
if (MYGUI_USE_FREETYPE)
|
||
|
target_link_libraries(${PROJECTNAME}
|
||
|
${FREETYPE_LIBRARIES}
|
||
|
- )
|
||
|
+ dl)
|
||
|
+else()
|
||
|
+ target_link_libraries(${PROJECTNAME}
|
||
|
+ dl)
|
||
|
endif()
|
||
|
|
||
|
# platform specific dependencies
|