We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent ad969a0 commit 3e76a97Copy full SHA for 3e76a97
src/providers/postgres/CMakeLists.txt
@@ -10,8 +10,9 @@ qgspostgrescountthread.cpp
10
qgspostgresextentthread.cpp
11
)
12
13
-#SET(PG_MOC_HDRS qgspostgresprovider.h)
14
-
+IF(NOT WIN32)
+ SET(PG_MOC_HDRS qgspostgresprovider.h)
15
+ENDIF(NOT WIN32)
16
17
########################################################
18
# Build
src/providers/wms/CMakeLists.txt
@@ -1,6 +1,8 @@
1
2
SET (WMS_SRCS qgswmsprovider.cpp)
3
-SET (WMS_MOC_HDRS "") #qgswmsprovider.h)
+IF (NOT WIN32)
4
+ SET (WMS_MOC_HDRS qgswmsprovider.h)
5
+ENDIF (NOT WIN32)
6
7
QT4_WRAP_CPP (WMS_MOC_SRCS ${WMS_MOC_HDRS})
8
0 commit comments