|
From: Tapio V. <aa...@us...> - 2012-11-06 10:46:22
|
Author: Tapio Vierros <tap...@gm...>
Date: Tue Nov 6 12:43:04 2012 +0200
Fix undefined reference from boost_system.
---
game/CMakeLists.txt | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/CMakeLists.txt b/game/CMakeLists.txt
index f92c742..41b50c4 100644
--- a/game/CMakeLists.txt
+++ b/game/CMakeLists.txt
@@ -66,7 +66,7 @@ set(SOURCES ${SOURCE_FILES} ${HEADER_FILES} ${RESOURCE_FILES})
# Libraries
-find_package(Boost 1.36 REQUIRED COMPONENTS thread date_time program_options regex filesystem)
+find_package(Boost 1.36 REQUIRED COMPONENTS thread date_time program_options regex filesystem system)
include_directories(${Boost_INCLUDE_DIRS})
list(APPEND LIBS ${Boost_LIBRARIES})
|