mirror of
https://github.com/GothenburgBitFactory/taskshell.git
synced 2025-06-26 10:54:29 +02:00
31 lines
989 B
CMake
31 lines
989 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|
|
|
# See this CMake issue before complaining about the following.
|
|
# https://cmake.org/Bug/view.php?id=16062
|
|
if(POLICY CMP0037)
|
|
cmake_policy(SET CMP0037 OLD)
|
|
endif()
|
|
|
|
include_directories (${CMAKE_SOURCE_DIR}
|
|
${CMAKE_SOURCE_DIR}/src
|
|
${CMAKE_SOURCE_DIR}/src/libshared/src
|
|
${CMAKE_SOURCE_DIR}/test
|
|
${TASKSH_INCLUDE_DIRS})
|
|
|
|
include_directories (${CMAKE_INSTALL_PREFIX}/include)
|
|
link_directories(${CMAKE_INSTALL_PREFIX}/lib)
|
|
|
|
set (test_SRCS)
|
|
|
|
add_custom_target (test ./run_all --verbose
|
|
DEPENDS ${test_SRCS}
|
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/test)
|
|
|
|
foreach (src_FILE ${test_SRCS})
|
|
add_executable (${src_FILE} "${src_FILE}.cpp" test.cpp)
|
|
target_link_libraries (${src_FILE} tasksh libshared ${TASKSH_LIBRARIES})
|
|
endforeach (src_FILE)
|
|
|
|
configure_file(run_all run_all COPYONLY)
|
|
configure_file(problems problems COPYONLY)
|
|
|