initial implementation of the CMake build system

This commit is contained in:
Markus Makela
2014-09-11 18:24:41 +03:00
parent 30c52677b0
commit b3ce971020
16 changed files with 199 additions and 0 deletions

View File

@ -0,0 +1,5 @@
cmake_minimum_required(VERSION 2.6)
set(LOG_MANAGER_HEADERS log_manager.h)
add_library(log_manager SHARED log_manager.cc)
target_link_libraries(log_manager utils)
install(TARGETS log_manager DESTINATION lib)