From d6bd0134b0e74d8d19d4f2681bf2127c34608329 Mon Sep 17 00:00:00 2001 From: kaetemi Date: Thu, 5 Apr 2012 12:51:36 +0200 Subject: [PATCH] Fixed: Some compile settings for pipeline project. --HG-- branch : build_pipeline_v3 --- code/nel/tools/pipeline/service/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/nel/tools/pipeline/service/CMakeLists.txt b/code/nel/tools/pipeline/service/CMakeLists.txt index a70cab0c6..8d2dcd95d 100644 --- a/code/nel/tools/pipeline/service/CMakeLists.txt +++ b/code/nel/tools/pipeline/service/CMakeLists.txt @@ -2,14 +2,13 @@ FILE(GLOB SRC *.cpp *.h) SOURCE_GROUP("" FILES ${SRC}) -FIND_PACKAGE(Boost COMPONENTS thread REQUIRED) ADD_EXECUTABLE(pipeline_service WIN32 ${SRC}) IF(UNIX) + FIND_PACKAGE(Boost COMPONENTS thread REQUIRED) INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIR}) TARGET_LINK_LIBRARIES(pipeline_service pipeline_plugin_library nelmisc nelnet nelgeorges ${Boost_LIBRARIES}) ELSE(UNIX) - INCLUDE_DIRECTORIES(${BOOST_ROOT}) TARGET_LINK_LIBRARIES(pipeline_service pipeline_plugin_library nelmisc nelnet nelgeorges) ENDIF(UNIX)