|
From: Lasse Kärkkäi. <tr...@us...> - 2009-11-29 08:22:54
|
Module: performous
Branch: dance
Commit: 63eebb0036672ff682145ea5f5bd09cd52ccdaef
Author: Lasse Karkkainen <tro...@tr...>
Date: Sat Nov 28 06:53:38 2009 +0200
The order DOES matter. Fixed the damn linking problem.
---
game/CMakeLists.txt | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/CMakeLists.txt b/game/CMakeLists.txt
index 1e9e60e..b2c5dd8 100644
--- a/game/CMakeLists.txt
+++ b/game/CMakeLists.txt
@@ -14,7 +14,7 @@ list(APPEND LIBS ${Boost_LIBRARIES})
# Libraries are part of Performous build process (for now)
set(SLAVE_LIBS TRUE)
if(SLAVE_LIBS)
- list(APPEND LIBS plugin++ da)
+ list(APPEND LIBS da plugin++)
else()
set(OUR_LIBS Plugin++ LibDA)
endif()
|