diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/module/mods/gpg_info/CMakeLists.txt | 5 | ||||
-rw-r--r-- | src/module/mods/ver_check/CMakeLists.txt | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/module/mods/gpg_info/CMakeLists.txt b/src/module/mods/gpg_info/CMakeLists.txt index 24eb559a..1deba18d 100644 --- a/src/module/mods/gpg_info/CMakeLists.txt +++ b/src/module/mods/gpg_info/CMakeLists.txt @@ -51,6 +51,11 @@ if (XCODE_BUILD) XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY "${GPGFRONTEND_XOCDE_CODE_SIGN_IDENTITY}") endif () +if (LINUX AND LINUX_INSTALL_SOFTWARE) + install(TARGETS mod_gpg_info + LIBRARY DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}/mods/") +endif() + # link sdk target_link_libraries(mod_gpg_info PRIVATE gpgfrontend_module_sdk) diff --git a/src/module/mods/ver_check/CMakeLists.txt b/src/module/mods/ver_check/CMakeLists.txt index 109848fa..1aaf94cf 100644 --- a/src/module/mods/ver_check/CMakeLists.txt +++ b/src/module/mods/ver_check/CMakeLists.txt @@ -51,6 +51,11 @@ if (XCODE_BUILD) XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY "${GPGFRONTEND_XOCDE_CODE_SIGN_IDENTITY}") endif () +if (LINUX AND LINUX_INSTALL_SOFTWARE) + install(TARGETS mod_ver_check + LIBRARY DESTINATION "${CMAKE_INSTALL_FULL_LIBDIR}/mods/") +endif() + # link sdk target_link_libraries(mod_ver_check PRIVATE gpgfrontend_module_sdk) |