mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
Nyall and Denis know better, add the flag :)
This commit is contained in:
parent
50339f18d7
commit
12a0e41402
@ -144,6 +144,8 @@ if(WITH_CORE)
|
||||
|
||||
set (WITH_GUI TRUE CACHE BOOL "Determines whether QGIS GUI library (and everything built on top of it) should be built")
|
||||
|
||||
set (WITH_AUTH TRUE CACHE BOOL "Determines whether QGIS authentication methods should be built")
|
||||
|
||||
set (WITH_ANALYSIS TRUE CACHE BOOL "Determines whether QGIS analysis library should be built")
|
||||
|
||||
set (WITH_DESKTOP TRUE CACHE BOOL "Determines whether QGIS desktop should be built")
|
||||
|
@ -1,6 +1,9 @@
|
||||
add_subdirectory(native)
|
||||
add_subdirectory(core)
|
||||
add_subdirectory(auth)
|
||||
|
||||
if (WITH_AUTH)
|
||||
add_subdirectory(auth)
|
||||
endif()
|
||||
|
||||
if (WITH_ANALYSIS)
|
||||
add_subdirectory(analysis)
|
||||
|
@ -40,7 +40,9 @@ if (ENABLE_TESTS)
|
||||
add_subdirectory(analysis)
|
||||
add_subdirectory(geometry_checker)
|
||||
endif()
|
||||
add_subdirectory(auth)
|
||||
if (WITH_AUTH)
|
||||
add_subdirectory(auth)
|
||||
endif()
|
||||
add_subdirectory(providers)
|
||||
if (WITH_DESKTOP)
|
||||
add_subdirectory(app)
|
||||
|
Loading…
x
Reference in New Issue
Block a user