mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
Install shared libs only if the were built Move insertion to IF(BUILD_SHARED_LIBS) Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
19 lines
999 B
Diff
19 lines
999 B
Diff
diff --git a/cmake/Install.cmake b/cmake/Install.cmake
|
|
index a13e029..336785c 100644
|
|
--- a/cmake/Install.cmake
|
|
+++ b/cmake/Install.cmake
|
|
@@ -269,6 +269,13 @@ ELSEIF(ANDROID)
|
|
ELSEIF(UNIX)
|
|
IF(BUILD_SHARED_LIBS)
|
|
SET(CMAKE_INSTALL_RPATH "\$ORIGIN")
|
|
+ INSTALL(TARGETS AusweisAppActivation AusweisAppActivationCustomScheme AusweisAppActivationIntent
|
|
+ AusweisAppActivationInternal AusweisAppActivationWebservice AusweisAppCard AusweisAppCardDrivers
|
|
+ AusweisAppCardPcsc AusweisAppConfiguration AusweisAppCore AusweisAppExport AusweisAppFileProvider
|
|
+ AusweisAppGlobal AusweisAppInit AusweisAppNetwork AusweisAppRemoteDevice AusweisAppSecureStorage
|
|
+ AusweisAppServices AusweisAppSettings AusweisAppUi AusweisAppUiAidl AusweisAppUiCommon
|
|
+ AusweisAppUiJson AusweisAppUiQml AusweisAppUiWebsocket AusweisAppUiWidget AusweisAppWhitelistClient
|
|
+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} OPTIONAL)
|
|
ENDIF()
|
|
|
|
SET(DEFAULT_FILE_DESTINATION ${CMAKE_INSTALL_DATADIR}/${VENDOR}/AusweisApp2)
|