Skip to content

Commit 43c046b

Browse files
committedOct 12, 2015
fix core api header
1 parent 1be64a5 commit 43c046b

File tree

11 files changed

+12
-1
lines changed

11 files changed

+12
-1
lines changed
 

‎src/auth/basic/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ SET(AUTH_BASIC_UIS qgsauthbasicedit.ui)
1818
INCLUDE_DIRECTORIES (
1919
../../core
2020
../../core/auth
21+
../../core/geometry
2122
${QCA_INCLUDE_DIR}
2223
../../gui
2324
../../gui/auth

‎src/auth/identcert/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ SET(AUTH_IDENTCERT_UIS qgsauthidentcertedit.ui)
1818
INCLUDE_DIRECTORIES (
1919
../../core
2020
../../core/auth
21+
../../core/geometry
2122
${QCA_INCLUDE_DIR}
2223
../../gui
2324
../../gui/auth

‎src/auth/pkipaths/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ SET(AUTH_PKIPATHS_UIS qgsauthpkipathsedit.ui)
1818
INCLUDE_DIRECTORIES (
1919
../../core
2020
../../core/auth
21+
../../core/geometry
2122
${QCA_INCLUDE_DIR}
2223
../../gui
2324
../../gui/auth

‎src/auth/pkipkcs12/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ SET(AUTH_PKCS12_UIS qgsauthpkcs12edit.ui)
1818
INCLUDE_DIRECTORIES (
1919
../../core
2020
../../core/auth
21+
../../core/geometry
2122
${QCA_INCLUDE_DIR}
2223
../../gui
2324
../../gui/auth

‎src/core/qgis.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
#include <cfloat>
2828
#include <cmath>
2929
#include <qnumeric.h>
30-
#include "geometry/qgswkbtypes.h"
30+
31+
#include <qgswkbtypes.h>
3132

3233
/** \ingroup core
3334
* The QGis class provides global constants for use throughout the application.

‎src/crssync/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ ADD_EXECUTABLE(crssync main.cpp)
22

33
INCLUDE_DIRECTORIES(
44
../core
5+
../core/geometry
56
${GDAL_INCLUDE_DIR}
67
${PROJ_INCLUDE_DIR}
78
)

‎src/helpviewer/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ ADD_EXECUTABLE (qgis_help MACOSX_BUNDLE WIN32 ${HELP_SRCS} ${HELP_MOC_SRCS} ${HE
5454

5555
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}
5656
${CMAKE_CURRENT_SOURCE_DIR}/../core
57+
${CMAKE_CURRENT_SOURCE_DIR}/../core/geometry
5758
${CMAKE_CURRENT_BINARY_DIR}
5859
${SQLITE3_INCLUDE_DIR}
5960
)

‎src/providers/gdal/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ SET(GDAL_MOC_HDRS
1010
INCLUDE_DIRECTORIES (
1111
../../core
1212
../../core/raster
13+
../../core/geometry
1314
../../gui
1415
${CMAKE_CURRENT_BINARY_DIR}/../../ui
1516
${GDAL_INCLUDE_DIR}

‎src/providers/ows/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ SET(OWS_MOC_HDRS
99

1010
INCLUDE_DIRECTORIES (
1111
../../core
12+
../../core/geometry
1213
../../core/auth
1314
../../gui
1415
../../gui/auth

‎src/providers/wcs/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ INCLUDE_DIRECTORIES(
2121
../../core
2222
../../core/auth
2323
../../core/raster
24+
../../core/geometry
2425
../../gui
2526
../../gui/auth
2627
../gdal

‎src/python/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ SET(QGISPYTHON_SRCS qgispython.cpp qgspythonutilsimpl.cpp)
1010

1111
INCLUDE_DIRECTORIES(
1212
../core
13+
../core/geometry
1314
../core/raster
1415
../gui
1516
${PYTHON_INCLUDE_PATH}

0 commit comments

Comments
 (0)
Please sign in to comment.