From 7ec4be5b47b75520480a376c02f29e472d84e27b Mon Sep 17 00:00:00 2001 From: Joakim Hove Date: Mon, 14 Oct 2013 21:13:24 +0200 Subject: [PATCH] Including StarTokenTest --- opm/parser/eclipse/RawDeck/tests/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/opm/parser/eclipse/RawDeck/tests/CMakeLists.txt b/opm/parser/eclipse/RawDeck/tests/CMakeLists.txt index d0daf10f6..9eacace0e 100644 --- a/opm/parser/eclipse/RawDeck/tests/CMakeLists.txt +++ b/opm/parser/eclipse/RawDeck/tests/CMakeLists.txt @@ -1,8 +1,11 @@ +add_executable(runStarTokenTests StarTokenTests.cpp) add_executable(runRawRecordTests RawRecordTests.cpp) add_executable(runRawKeywordTests RawKeywordTests.cpp) +target_link_libraries(runStarTokenTests Parser ${Boost_LIBRARIES}) target_link_libraries(runRawRecordTests Parser ${Boost_LIBRARIES}) target_link_libraries(runRawKeywordTests Parser ${Boost_LIBRARIES}) add_test(NAME runRawRecordTests COMMAND ${EXECUTABLE_OUTPUT_PATH}/runRawRecordTests ) add_test(NAME runRawKeywordTests COMMAND ${EXECUTABLE_OUTPUT_PATH}/runRawKeywordTests ) +add_test(NAME runStarTokenTests COMMAND ${EXECUTABLE_OUTPUT_PATH}/runStarTokenTests )