Skip to content

Commit 4984cae

Browse files
committedJul 26, 2015
db_manager: enable oracle plugin only when oracle support is available
1 parent 9d5a942 commit 4984cae

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
ADD_SUBDIRECTORY(postgis)
22
ADD_SUBDIRECTORY(spatialite)
3-
ADD_SUBDIRECTORY(oracle)
3+
IF(WITH_ORACLE)
4+
ADD_SUBDIRECTORY(oracle)
5+
ENDIF(WITH_ORACLE)
46

57
FILE(GLOB PY_FILES *.py)
68
PLUGIN_INSTALL(db_manager db_plugins ${PY_FILES})

0 commit comments

Comments
 (0)
Please sign in to comment.