Skip to content

Commit

Permalink
Nyall and Denis know better, add the flag :)
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn authored and 3nids committed May 19, 2021
1 parent 50339f1 commit 12a0e41
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CMakeLists.txt
Expand Up @@ -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")
Expand Down
5 changes: 4 additions & 1 deletion src/CMakeLists.txt
@@ -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)
Expand Down
4 changes: 3 additions & 1 deletion tests/src/CMakeLists.txt
Expand Up @@ -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)
Expand Down

0 comments on commit 12a0e41

Please sign in to comment.