mirror of
https://github.com/GothenburgBitFactory/timewarrior.git
synced 2025-07-07 20:06:39 +02:00
12 lines
369 B
CMake
12 lines
369 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)
|
|
|
|
add_library (commands STATIC ${commands_SRCS})
|
|
|