Common: Relocated reusable object to 'common' dir

This commit is contained in:
Paul Beckingham 2015-12-20 09:46:34 -05:00
parent 735b0ce793
commit a4b3f0c84a
12 changed files with 27 additions and 8 deletions

View file

@ -5,6 +5,7 @@ endif()
include_directories (${CMAKE_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/src
${CMAKE_SOURCE_DIR}/common
${CMAKE_SOURCE_DIR}/test
${TIMEW_INCLUDE_DIRS})
@ -19,7 +20,7 @@ add_custom_target (build_tests DEPENDS ${test_SRCS}
foreach (src_FILE ${test_SRCS})
add_executable (${src_FILE} "${src_FILE}.cpp" test.cpp)
target_link_libraries (${src_FILE} timew ${TIMEW_LIBRARIES})
target_link_libraries (${src_FILE} timew common ${TIMEW_LIBRARIES})
endforeach (src_FILE)
configure_file(run_all run_all COPYONLY)