Code cleanup

- Tidied CMakeLists.txt to trigger a flod build as a test.
This commit is contained in:
Paul Beckingham
2014-05-11 16:23:56 -04:00
parent 4357f9c545
commit 73ecd13597
2 changed files with 5 additions and 5 deletions

View File

@@ -52,9 +52,9 @@ set (task_SRCS A3.cpp A3.h
wcwidth6.cpp)
add_library (task STATIC ${task_SRCS})
add_executable (task_executable main.cpp)
add_executable (calc_executable calc.cpp)
add_executable (args_executable args.cpp)
add_executable (task_executable main.cpp)
add_executable (calc_executable calc.cpp)
add_executable (args_executable args.cpp)
# Yes, 'task' is included twice, otherwise linking fails on assorted OSes.
target_link_libraries (task_executable task commands columns task ${TASK_LIBRARIES})