22 lines
320 B
CMake
22 lines
320 B
CMake
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
|
|
project(dkunit CXX)
|
|
|
|
include_directories(
|
|
.
|
|
)
|
|
include_directories(SYSTEM
|
|
../gtest-1.7.0/include
|
|
)
|
|
|
|
add_executable(${PROJECT_NAME}
|
|
tilecoords.cpp
|
|
vector.cpp
|
|
tileiterator.cpp
|
|
asciimapsource.cpp
|
|
)
|
|
|
|
target_link_libraries(${PROJECT_NAME}
|
|
doorkeeper
|
|
gtest
|
|
gtest_main
|
|
)
|