From 3f68d4c3869b0b2b5b5df5b08492e68eba903fc2 Mon Sep 17 00:00:00 2001 From: Michael Klein Date: Wed, 8 Mar 2023 15:40:18 +0100 Subject: link all plugins as MODULE library --- plugins/gvnc/CMakeLists.txt | 2 +- plugins/python_wrapper/CMakeLists.txt | 3 +-- plugins/spice/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) (limited to 'plugins') 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) -- cgit v1.2.3