Nyall and Denis know better, add the flag :)

This commit is contained in:
nirvn 2021-05-18 12:40:26 +07:00 committed by Denis Rouzaud
parent 50339f18d7
commit 12a0e41402
3 changed files with 9 additions and 2 deletions

View File

@ -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")

View File

@ -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)

View File

@ -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)