From 54932b3747a9f5505fd62f68e423f0ddedb26045 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Wed, 28 Aug 2019 21:00:17 +0200 Subject: [PATCH] build: add install command --- src/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a767dd5..1eea2b3 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -36,3 +36,5 @@ add_executable(regiondump ) set_target_properties(regiondump PROPERTIES COMPILE_FLAGS "-std=c++11 -Wall") target_link_libraries(regiondump ${ZLIB_LIBRARIES}) + +install(TARGETS MinedMap RUNTIME DESTINATION bin)