Build: Renamed main.cpp to timew.cpp

- Adjusted copyright.
- Fixed common dir bug.
This commit is contained in:
Paul Beckingham 2015-12-20 11:50:18 -05:00
parent 2c181ec07e
commit dd1622a1e4
4 changed files with 7 additions and 4 deletions

View file

@ -1,13 +1,13 @@
cmake_minimum_required (VERSION 2.8)
include_directories (${CMAKE_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/src
${CMAKE_SOURCE_DIR}/common
${CMAKE_SOURCE_DIR}/src/common
${TIMEW_INCLUDE_DIRS})
set (timew_SRCS LR0.cpp LR0.h)
add_library (timew STATIC ${timew_SRCS})
add_executable (timew_executable main.cpp)
add_executable (timew_executable timew.cpp)
target_link_libraries (timew_executable common timew ${TIMEW_LIBRARIES})