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:40:18 +0300
committerMichael Klein <m.klein@mvz-labor-lb.de>2023-03-08 17:40:18 +0300
commit3f68d4c3869b0b2b5b5df5b08492e68eba903fc2 (patch)
treef86b37e3032c58bfeae20f8620c3cd23adffc280 /plugins
parented991f205ed05b49a9aecddd987915bfa1026b9d (diff)
link all plugins as MODULE library
Diffstat (limited to 'plugins')
-rw-r--r--plugins/gvnc/CMakeLists.txt2
-rw-r--r--plugins/python_wrapper/CMakeLists.txt3
-rw-r--r--plugins/spice/CMakeLists.txt2
3 files changed, 3 insertions, 4 deletions
diff --git a/plugins/gvnc/CMakeLists.txt b/plugins/gvnc/CMakeLists.txt
index 0dc5782c5..ca5c1cdfa 100644
--- a/plugins/gvnc/CMakeLists.txt
+++ b/plugins/gvnc/CMakeLists.txt
@@ -36,7 +36,7 @@ set(REMMINA_PLUGIN_GVNC_SRCS
gvnc_plugin.c
)
-add_library(remmina-plugin-gvnc ${REMMINA_PLUGIN_GVNC_SRCS})
+add_library(remmina-plugin-gvnc MODULE ${REMMINA_PLUGIN_GVNC_SRCS})
set_target_properties(remmina-plugin-gvnc PROPERTIES PREFIX "")
set_target_properties(remmina-plugin-gvnc PROPERTIES NO_SONAME 1)
diff --git a/plugins/python_wrapper/CMakeLists.txt b/plugins/python_wrapper/CMakeLists.txt
index 54c6cf3db..d77eac5e1 100644
--- a/plugins/python_wrapper/CMakeLists.txt
+++ b/plugins/python_wrapper/CMakeLists.txt
@@ -55,11 +55,10 @@ set(REMMINA_PLUGIN_PYTHON_WRAPPER_SRCS
python_wrapper_tool.h
)
-add_library(remmina-plugin-python_wrapper ${REMMINA_PLUGIN_PYTHON_WRAPPER_SRCS})
+add_library(remmina-plugin-python_wrapper MODULE ${REMMINA_PLUGIN_PYTHON_WRAPPER_SRCS})
set_target_properties(remmina-plugin-python_wrapper PROPERTIES PREFIX "")
set_target_properties(remmina-plugin-python_wrapper PROPERTIES NO_SONAME 1)
-message(${REMMINA_COMMON_INCLUDE_DIRS})
include_directories(${REMMINA_COMMON_INCLUDE_DIRS} ${PYTHON_WRAPPER_INCLUDE_DIRS})
target_link_libraries(remmina-plugin-python_wrapper ${REMMINA_COMMON_LIBRARIES} ${PYTHON_WRAPPER_LIBRARIES})
diff --git a/plugins/spice/CMakeLists.txt b/plugins/spice/CMakeLists.txt
index 87989be40..875d53f4f 100644
--- a/plugins/spice/CMakeLists.txt
+++ b/plugins/spice/CMakeLists.txt
@@ -36,7 +36,7 @@ set(REMMINA_PLUGIN_SPICE_SRCS
spice_plugin_usb.c
)
-add_library(remmina-plugin-spice ${REMMINA_PLUGIN_SPICE_SRCS})
+add_library(remmina-plugin-spice MODULE ${REMMINA_PLUGIN_SPICE_SRCS})
set_target_properties(remmina-plugin-spice PROPERTIES PREFIX "")
set_target_properties(remmina-plugin-spice PROPERTIES NO_SONAME 1)