mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00

Conflicts: AUTHORS CMakeLists.txt INSTALL NEWS cmake.h.in doc/man/task-faq.5.in package-config/osx/README scripts/utils/verify_l10n src/API.h src/Config.cpp src/Context.cpp src/DOM.cpp src/Hooks.cpp src/TransportShell.h src/commands/CmdDiagnostics.cpp src/commands/CmdShell.cpp src/commands/CmdVersion.cpp src/en-US.h src/shell/Readline.h src/wcwidth6.cpp test/CMakeLists.txt test/color.uda.t test/duration.t.cpp test/hook.on-launch.t test/template.t test/uuid.t
38 lines
1.4 KiB
CMake
38 lines
1.4 KiB
CMake
cmake_minimum_required (VERSION 2.8)
|
|
include_directories (${CMAKE_SOURCE_DIR}
|
|
${CMAKE_SOURCE_DIR}/src
|
|
${CMAKE_SOURCE_DIR}/src/commands
|
|
${CMAKE_SOURCE_DIR}/src/columns
|
|
${CMAKE_SOURCE_DIR}/test
|
|
${TASK_INCLUDE_DIRS})
|
|
|
|
set (test_SRCS autocomplete.t color.t config.t date.t directory.t dom.t
|
|
duration.t file.t i18n.t json.t list.t msg.t nibbler.t path.t
|
|
rx.t t.t t2.t taskmod.t tdb2.t text.t uri.t utf8.t util.t view.t
|
|
width.t json_test)
|
|
|
|
message ("-- Configuring run_all")
|
|
set (TESTBLOB "*.t")
|
|
if (CYGWIN)
|
|
set (TESTBLOB "*.t *.t.exe")
|
|
endif (CYGWIN)
|
|
configure_file (
|
|
${CMAKE_SOURCE_DIR}/test/run_all.in
|
|
${CMAKE_SOURCE_DIR}/test/run_all)
|
|
|
|
add_custom_target (test ./run_all --verbose
|
|
DEPENDS ${test_SRCS} task_executable
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/test)
|
|
|
|
add_custom_target (build_tests DEPENDS ${test_SRCS}
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/test)
|
|
|
|
foreach (src_FILE ${test_SRCS})
|
|
add_executable (${src_FILE} "${src_FILE}.cpp" test.cpp)
|
|
target_link_libraries (${src_FILE} task commands task columns ${TASK_LIBRARIES})
|
|
endforeach (src_FILE)
|
|
|
|
#SET(CMAKE_BUILD_TYPE gcov)
|
|
#SET(CMAKE_CXX_FLAGS_GCOV "--coverage")
|
|
#SET(CMAKE_C_FLAGS_GCOV "--coverage")
|
|
#SET(CMAKE_EXE_LINKER_FLAGS_GCOV "--coverage")
|