Code Reorganization

- Eliminated the parser lib, merged into task.  Failed experiment.
This commit is contained in:
Paul Beckingham
2013-10-19 22:30:34 -04:00
parent 6f8e115c1c
commit d27bd24355
23 changed files with 12 additions and 12 deletions

View File

@@ -3,7 +3,6 @@ include_directories (${CMAKE_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/src
${CMAKE_SOURCE_DIR}/src/commands
${CMAKE_SOURCE_DIR}/src/columns
${CMAKE_SOURCE_DIR}/src/parser
${CMAKE_SOURCE_DIR}/test
${TASK_INCLUDE_DIRS})
@@ -42,7 +41,7 @@ add_custom_target (build_tests DEPENDS ${test_SRCS}
foreach (src_FILE ${test_SRCS})
add_executable (${src_FILE} "${src_FILE}.cpp" test.cpp)
target_link_libraries (${src_FILE} task commands task columns parser ${TASK_LIBRARIES})
target_link_libraries (${src_FILE} task commands task columns ${TASK_LIBRARIES})
endforeach (src_FILE)
#SET(CMAKE_BUILD_TYPE gcov)