From a21206bfb3c9e57565fb10de52197aecc8a44596 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Thu, 17 Mar 2016 16:36:41 -0400 Subject: [PATCH] Build: Fixed text build problem --- test/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 15456323..acc5cf47 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -5,6 +5,7 @@ endif() include_directories (${CMAKE_SOURCE_DIR} ${CMAKE_SOURCE_DIR}/src + ${CMAKE_SOURCE_DIR}/src/libshared/src ${CMAKE_SOURCE_DIR}/test) include_directories (${CMAKE_INSTALL_PREFIX}/include) @@ -18,7 +19,7 @@ add_custom_target (test ./run_all --verbose foreach (src_FILE ${test_SRCS}) add_executable (${src_FILE} "${src_FILE}.cpp" test.cpp) - target_link_libraries (${src_FILE} timew shared ${TIMEW_LIBRARIES}) + target_link_libraries (${src_FILE} timew libshared ${TIMEW_LIBRARIES}) endforeach (src_FILE) configure_file(run_all run_all COPYONLY)