Matthias Kuhn be8ae5fbfb Add new CMake option: WITH_INTERNAL_HTTPLIB (default True)
If set to False, you have to make sure that the httplib2 package
is available on the target platform

Fix #9618
2014-03-11 11:11:26 +01:00

9 lines
193 B
CMake

FILE(GLOB PY_FILES *.py)
ADD_SUBDIRECTORY(geoserver)
IF(WITH_INTERNAL_HTTPLIB)
ADD_SUBDIRECTORY(httplib2)
ENDIF(WITH_INTERNAL_HTTPLIB)
PLUGIN_INSTALL(processing ./admintools ${PY_FILES})