Skip to content

Commit 4923c30

Browse files
committedJan 22, 2013
[FEATURE] add oracle provider
1 parent dda51c6 commit 4923c30

Some content is hidden

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

64 files changed

+15204
-1839
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

0 commit comments

Comments
 (0)
Please sign in to comment.