From ce144b40f8ef0156e5277470cab22ee966246e91 Mon Sep 17 00:00:00 2001 From: Bastian Rieck Date: Mon, 19 Sep 2016 10:29:26 +0200 Subject: [PATCH] Addedd `boost.program_options` for Travis CI --- .travis.yml | 2 +- CMakeLists.txt | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9569ac8..c897a41 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ compiler: - gcc before_script: - sudo apt-get update -qq - - sudo apt-get install libboost-dev + - sudo apt-get install libboost-dev libboost-program-options-dev script: - mkdir build - cd build diff --git a/CMakeLists.txt b/CMakeLists.txt index 316b9b7..e4b88d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -47,6 +47,8 @@ ADD_EXECUTABLE( psalm_cli ${PSALM_SRC} ) TARGET_LINK_LIBRARIES( psalm_cli SubdivisionAlgorithms FairingAlgorithms SegmentationAlgorithms ${Boost_LIBRARIES} ) SET_TARGET_PROPERTIES( psalm_cli PROPERTIES OUTPUT_NAME psalm ) +MESSAGE( STATUS ${Boost_LIBRARIES} ) + # # Build `libpsalm` _without_ relying on any libraries; this makes inclusion of # the library easier.