journey/CMakeLists.txt

11 lines
319 B
CMake
Raw Permalink Normal View History

2016-02-08 10:52:14 +01:00
cmake_minimum_required(VERSION 2.6)
project(journey)
find_package(PkgConfig)
pkg_check_modules(LIBSYSTEMD REQUIRED libsystemd)
pkg_check_modules(RE2 REQUIRED re2)
add_executable(journey main.cpp)
target_link_libraries(journey ${LIBSYSTEMD_LIBRARIES} ${RE2_LIBRARIES})
install(TARGETS journey RUNTIME DESTINATION bin)