Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
fix building server without plugins (or without python) (#40869)
- Loading branch information
Showing
with
4 additions
and
4 deletions.
-
+3
−3
python/server/server_auto.sip
-
+1
−1
src/server/CMakeLists.txt
|
@@ -19,6 +19,9 @@ |
|
|
%Include auto_generated/qgsserverapiutils.sip |
|
|
%Include auto_generated/qgsserverexception.sip |
|
|
%If ( HAVE_SERVER_PYTHON_PLUGINS ) |
|
|
%Include auto_generated/qgsserverfilter.sip |
|
|
%End |
|
|
%If ( HAVE_SERVER_PYTHON_PLUGINS ) |
|
|
%Include auto_generated/qgsserverinterface.sip |
|
|
%End |
|
|
%Include auto_generated/qgsserverprojectutils.sip |
|
@@ -30,9 +33,6 @@ |
|
|
%Include auto_generated/qgsfeaturefilter.sip |
|
|
%Include auto_generated/qgsstorebadlayerinfo.sip |
|
|
%If ( HAVE_SERVER_PYTHON_PLUGINS ) |
|
|
%Include auto_generated/qgsserverfilter.sip |
|
|
%End |
|
|
%If ( HAVE_SERVER_PYTHON_PLUGINS ) |
|
|
%Include auto_generated/qgsaccesscontrolfilter.sip |
|
|
%End |
|
|
%If ( HAVE_SERVER_PYTHON_PLUGINS ) |
|
|
|
@@ -34,6 +34,7 @@ set(QGIS_SERVER_SRCS |
|
|
qgsserverapicontext.cpp |
|
|
qgsserverparameters.cpp |
|
|
qgsserverexception.cpp |
|
|
qgsserverfilter.cpp |
|
|
qgsserverinterface.cpp |
|
|
qgsserverinterfaceimpl.cpp |
|
|
qgsserverlogger.cpp |
|
@@ -74,7 +75,6 @@ set (QGIS_SERVER_HDRS |
|
|
if (WITH_SERVER_PLUGINS) |
|
|
set(QGIS_SERVER_SRCS ${QGIS_SERVER_SRCS} |
|
|
qgsserverplugins.cpp |
|
|
qgsserverfilter.cpp |
|
|
qgsaccesscontrolfilter.cpp |
|
|
qgsaccesscontrol.cpp |
|
|
qgsservercachefilter.cpp |
|
|