Build: Added subdirectory with library for command functions

This commit is contained in:
Paul Beckingham 2016-03-01 00:29:36 -05:00
parent bbde660e54
commit fae763b5e8
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,10 @@
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 CmdHelp.cpp)
add_library (commands STATIC ${commands_SRCS})