From 21b3836dc0cdf02fe25b160d04da5f01cd18188d Mon Sep 17 00:00:00 2001 From: Markus Koch Date: Sat, 17 Mar 2018 17:42:17 +0100 Subject: [PATCH] Add install target --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index e03ddb1..cef6f9e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -25,3 +25,5 @@ aux_source_directory(./src SRC_LIST) add_executable(${PROJECT_NAME} ${SRC_LIST}) target_sources(${PROJECT_NAME} PUBLIC "${CMAKE_CURRENT_BINARY_DIR}/resources.c") target_link_libraries(${PROJECT_NAME} ${GTK3_LIBRARIES} ${WEBKIT_LIBRARIES}) + +install (TARGETS ${PROJECT_NAME} DESTINATION bin)