We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6efe160 commit 2831f84Copy full SHA for 2831f84
src/core/CMakeLists.txt
@@ -1113,8 +1113,6 @@ IF (WIN32)
1113
TARGET_LINK_LIBRARIES(qgis_core wsock32 ${SETUPAPI_LIBRARY} DbgHelp)
1114
ENDIF (WIN32)
1115
1116
-TARGET_LINK_LIBRARIES(qgis_core qgis_native)
1117
-
1118
IF (NOT WITH_INTERNAL_QEXTSERIALPORT)
1119
TARGET_LINK_LIBRARIES(qgis_core ${QEXTSERIALPORT_LIBRARY})
1120
ENDIF (NOT WITH_INTERNAL_QEXTSERIALPORT)
src/gui/qgsgui.cpp
@@ -19,7 +19,11 @@
19
#include "qgseditorwidgetregistry.h"
20
#include "qgslayertreeembeddedwidgetregistry.h"
21
#include "qgsmaplayeractionregistry.h"
22
+#ifdef Q_OS_MACX
23
+#include "qgsmacnative.h"
24
+#else
25
#include "qgsnative.h"
26
+#endif
27
#include "qgsshortcutsmanager.h"
28
29
QgsGui *QgsGui::instance()
0 commit comments