From 06eb1a7df2032144f99473fd812412514834a1ee Mon Sep 17 00:00:00 2001 From: Vitaliy Filippov Date: Sun, 31 May 2015 22:35:15 +0300 Subject: [PATCH] Fix FreeBSD build --- grive/CMakeLists.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/grive/CMakeLists.txt b/grive/CMakeLists.txt index d5f8ebe..837a36d 100644 --- a/grive/CMakeLists.txt +++ b/grive/CMakeLists.txt @@ -5,10 +5,11 @@ find_package(Boost COMPONENTS program_options REQUIRED) include_directories( ${grive_SOURCE_DIR}/../libgrive/src ${OPT_INCS} + ${Boost_INCLUDE_DIRS} ) file (GLOB GRIVE_EXE_SRC - ${grive_SOURCE_DIR}/src/*.cc + ${grive_SOURCE_DIR}/src/*.cc ) add_executable( grive_executable @@ -17,11 +18,11 @@ add_executable( grive_executable target_link_libraries( grive_executable ${Boost_LIBRARIES} - grive + grive ) set_target_properties( grive_executable - PROPERTIES OUTPUT_NAME grive + PROPERTIES OUTPUT_NAME grive ) install(TARGETS grive_executable RUNTIME DESTINATION bin)