mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00

- Implemented ColPriority, with 'default' and 'long' formats. - Implemented ColProject 'parent' format.
16 lines
547 B
CMake
16 lines
547 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|
include_directories (${CMAKE_SOURCE_DIR}/src
|
|
${CMAKE_SOURCE_DIR}/src/commands
|
|
${CMAKE_SOURCE_DIR}/src/columns
|
|
${TASK_INCLUDE_DIRS})
|
|
|
|
set (columns_SRCS Column.cpp Column.h
|
|
ColID.cpp ColID.h
|
|
ColPriority.cpp ColPriority.h
|
|
ColProject.cpp ColProject.h)
|
|
|
|
add_library (columns STATIC ${columns_SRCS})
|
|
|
|
set (CMAKE_BUILD_TYPE debug)
|
|
set (CMAKE_C_FLAGS_DEBUG "-ggdb3")
|
|
set (CMAKE_C_FLAGS_RELEASE "-O3")
|