mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
13 lines
400 B
CMake
13 lines
400 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|
include_directories (${CMAKE_SOURCE_DIR}
|
|
${CMAKE_SOURCE_DIR}/src
|
|
${CMAKE_SOURCE_DIR}/src/commands
|
|
${TIMEW_INCLUDE_DIRS})
|
|
|
|
set (commands_SRCS CmdDefault.cpp
|
|
CmdHelp.cpp
|
|
CmdStart.cpp
|
|
CmdStop.cpp)
|
|
|
|
add_library (commands STATIC ${commands_SRCS})
|
|
|