Skip to content

Commit 9fcc246

Browse files
committedMar 21, 2016
Add missing SQLITE3_INCLUDE_DIR in a few components
Those components depend on sqlite3.h, but fails to add explictly its paths, relying on it to be present in the other used included paths, which may be not always the case in some setups. This is a follow-up of 455a473 on a clean build.
1 parent d161612 commit 9fcc246

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed
 

‎python/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ INCLUDE_DIRECTORIES(SYSTEM
7979
${QEXTSERIALPORT_INCLUDE_DIR}
8080
${QSCINTILLA_INCLUDE_DIR}
8181
${QCA_INCLUDE_DIR}
82+
${SQLITE3_INCLUDE_DIR}
8283
)
8384
INCLUDE_DIRECTORIES(
8485
../src/core

‎src/analysis/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,7 @@ INCLUDE_DIRECTORIES(SYSTEM
146146
${PROJ_INCLUDE_DIR}
147147
${GEOS_INCLUDE_DIR}
148148
${GDAL_INCLUDE_DIR}
149+
${SQLITE3_INCLUDE_DIR}
149150
)
150151

151152
IF (NOT MSVC)

‎tests/src/core/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ INCLUDE_DIRECTORIES(SYSTEM
2222
${PROJ_INCLUDE_DIR}
2323
${GEOS_INCLUDE_DIR}
2424
${QCA_INCLUDE_DIR}
25+
${SQLITE3_INCLUDE_DIR}
2526
)
2627

2728
#############################################################

0 commit comments

Comments
 (0)
Please sign in to comment.