From 350916588faa3012ab9135dadf9ce563d77b0c26 Mon Sep 17 00:00:00 2001 From: Syping Date: Fri, 27 Aug 2021 05:41:12 +0200 Subject: [PATCH] CMake: install ragephoto-gtkviewer in bin folder --- examples/ragephoto-gtkviewer/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/ragephoto-gtkviewer/CMakeLists.txt b/examples/ragephoto-gtkviewer/CMakeLists.txt index f49f5cb..0304260 100644 --- a/examples/ragephoto-gtkviewer/CMakeLists.txt +++ b/examples/ragephoto-gtkviewer/CMakeLists.txt @@ -25,6 +25,7 @@ if(TARGET ragephoto) target_link_libraries(ragephoto-gtkviewer ${gtkmm_LIBRARIES} ragephoto) target_link_directories(ragephoto-gtkviewer PRIVATE ${gtkmm_LIBRARY_DIRS}) target_include_directories(ragephoto-gtkviewer PRIVATE ${gtkmm_INCLUDE_DIRS} ${RAGEPHOTO_INCLUDE_DIRS}) + install(TARGETS ragephoto-gtkviewer DESTINATION bin) else() message("ragephoto-gtkviewer need to be build with libragephoto together") endif()