|
From: Lasse Kärkkäi. <tr...@us...> - 2009-11-29 08:22:26
|
Module: performous
Branch: dance
Commit: 68c99e93bf197a4ef720ac773445e12bfc78c808
Author: Lasse Karkkainen <tro...@tr...>
Date: Wed Nov 25 00:46:12 2009 +0200
Workaround for CMake target forwarding problem. Works for Performous but plugin++/libda don't work properly stand-alone now.
---
game/CMakeLists.txt | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/CMakeLists.txt b/game/CMakeLists.txt
index 846eb1a..66b61da 100644
--- a/game/CMakeLists.txt
+++ b/game/CMakeLists.txt
@@ -12,7 +12,7 @@ include_directories(${Boost_INCLUDE_DIRS})
set(LIBS ${LIBS} ${Boost_LIBRARIES})
# Find all the libs that don't require extra parameters
-foreach(lib LibDA SDL PangoCairo LibRSVG LibXML++ Magick++ GLEW AVFormat SWScale OpenGL)
+foreach(lib Plugin++ LibDA SDL PangoCairo LibRSVG LibXML++ Magick++ GLEW AVFormat SWScale OpenGL)
find_package(${lib} REQUIRED)
include_directories(${${lib}_INCLUDE_DIRS})
set(LIBS ${LIBS} ${${lib}_LIBRARIES})
|