timewarrior/src/commands/CMakeLists.txt
2016-03-01 00:53:21 -05:00

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})