This also adds a static lib part to DoorKeeper that will only contain helper functions.
10 lines
150 B
CMake
10 lines
150 B
CMake
cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
|
|
project(doorkeeper CXX)
|
|
|
|
include_directories(
|
|
.
|
|
)
|
|
|
|
add_library(${PROJECT_NAME}
|
|
asciimapsource.cpp
|
|
)
|