Skip to content

Commit 2fc799b

Browse files
committedJan 9, 2013
[FEATURE] add oracle provider
1 parent c67fb81 commit 2fc799b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+14360
-759
lines changed
 

‎CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,11 @@ IF (WITH_SPATIALITE)
7070
ENDIF (WITH_INTERNAL_SPATIALITE)
7171
ENDIF (WITH_SPATIALITE)
7272

73+
SET (WITH_ORACLE FALSE CACHE BOOL "Determines whether Oracle support should be built")
74+
IF(WITH_ORACLE)
75+
SET(HAVE_ORACLE TRUE)
76+
ENDIF(WITH_ORACLE)
77+
7378
# try to configure and build python bindings by default
7479
SET (WITH_BINDINGS TRUE CACHE BOOL "Determines whether python bindings should be built")
7580
IF (WITH_BINDINGS)

‎cmake_templates/qgsconfig.h.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838

3939
#cmakedefine HAVE_MSSQL
4040

41+
#cmakedefine HAVE_ORACLE
42+
4143
#cmakedefine HAVE_PYTHON
4244

4345
#cmakedefine HAVE_TOUCH

1 commit comments

Comments
 (1)

timlinux commented on Jan 10, 2013

@timlinux
Member

Wooohoo this will be another great notch in QGIS's belt!

Please sign in to comment.