From 0a29c5749ed424b7b0054238d0f8f6ea7753e752 Mon Sep 17 00:00:00 2001 From: David Faure Date: Tue, 9 Jul 2024 20:20:43 +0200 Subject: [PATCH] Implement "make install" in the CMakeLists.txt for linuxdeployqt (#615) --- tools/linuxdeployqt/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/linuxdeployqt/CMakeLists.txt b/tools/linuxdeployqt/CMakeLists.txt index 8ee17277..0016ab47 100644 --- a/tools/linuxdeployqt/CMakeLists.txt +++ b/tools/linuxdeployqt/CMakeLists.txt @@ -29,3 +29,5 @@ add_executable(linuxdeployqt main.cpp shared.cpp) target_include_directories(linuxdeployqt PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}) target_link_libraries(linuxdeployqt Qt${QT_VERSION_MAJOR}::Core) target_compile_definitions(linuxdeployqt PRIVATE -DEXCLUDELIST="${EXCLUDELIST}") + +install(TARGETS linuxdeployqt RUNTIME DESTINATION ${INSTALL_RUNTIME_DIR})