Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klein <m.klein@mvz-labor-lb.de>2023-03-08 17:34:48 +0300
committerMichael Klein <m.klein@mvz-labor-lb.de>2023-03-08 17:34:48 +0300
commitbdd98c3a1723bc17824974c9b3b3b562e74512bd (patch)
tree80052b1ce4d846e28484023033281f2f12247743 /plugins
parent9daacca396bdef38506e0fd554c828b0d6888c51 (diff)
CMake: Add ${Intl_LIBRARIES} to ${REMMINA_COMMON_LIBRARIES}
Diffstat (limited to 'plugins')
-rw-r--r--plugins/CMakeLists.txt2
-rw-r--r--plugins/x2go/CMakeLists.txt3
2 files changed, 2 insertions, 3 deletions
diff --git a/plugins/CMakeLists.txt b/plugins/CMakeLists.txt
index c2e301431..829b3dc5a 100644
--- a/plugins/CMakeLists.txt
+++ b/plugins/CMakeLists.txt
@@ -40,7 +40,7 @@ include_directories(${CMAKE_SOURCE_DIR}/plugins)
set(APPICONSCALE_EMBLEMS_DIR "${REMMINA_DATADIR}/icons/hicolor/scalable/emblems")
set(REMMINA_COMMON_INCLUDE_DIRS ${GTK3_INCLUDE_DIRS})
-set(REMMINA_COMMON_LIBRARIES ${GTK_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
+set(REMMINA_COMMON_LIBRARIES ${GTK_LIBRARIES} ${Intl_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
find_suggested_package(LIBSSH)
if(LIBSSH_FOUND)
diff --git a/plugins/x2go/CMakeLists.txt b/plugins/x2go/CMakeLists.txt
index 26a795217..97df0700f 100644
--- a/plugins/x2go/CMakeLists.txt
+++ b/plugins/x2go/CMakeLists.txt
@@ -40,7 +40,7 @@ set(REMMINA_PLUGIN_X2GO_SRCS
x2go_plugin.h
)
-add_library(remmina-plugin-x2go ${REMMINA_PLUGIN_X2GO_SRCS})
+add_library(remmina-plugin-x2go MODULE ${REMMINA_PLUGIN_X2GO_SRCS})
set_target_properties(remmina-plugin-x2go PROPERTIES PREFIX "")
set_target_properties(remmina-plugin-x2go PROPERTIES NO_SONAME 1)
@@ -52,7 +52,6 @@ target_link_libraries(remmina-plugin-x2go
${REMMINA_COMMON_LIBRARIES}
${XKBFILE_LIBRARIES}
${LIBSSH_LIBRARIES}
- ${Intl_LIBRARIES}
${X11_X11_LIB})
install(TARGETS remmina-plugin-x2go DESTINATION ${REMMINA_PLUGINDIR})