File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -144,6 +144,8 @@ if(WITH_CORE)
144
144
145
145
set (WITH_GUI TRUE CACHE BOOL "Determines whether QGIS GUI library (and everything built on top of it) should be built" )
146
146
147
+ set (WITH_AUTH TRUE CACHE BOOL "Determines whether QGIS authentication methods should be built" )
148
+
147
149
set (WITH_ANALYSIS TRUE CACHE BOOL "Determines whether QGIS analysis library should be built" )
148
150
149
151
set (WITH_DESKTOP TRUE CACHE BOOL "Determines whether QGIS desktop should be built" )
Original file line number Diff line number Diff line change 1
1
add_subdirectory (native)
2
2
add_subdirectory (core)
3
- add_subdirectory (auth)
3
+
4
+ if (WITH_AUTH)
5
+ add_subdirectory (auth)
6
+ endif ()
4
7
5
8
if (WITH_ANALYSIS)
6
9
add_subdirectory (analysis)
Original file line number Diff line number Diff line change @@ -40,7 +40,9 @@ if (ENABLE_TESTS)
40
40
add_subdirectory (analysis)
41
41
add_subdirectory (geometry_checker)
42
42
endif ()
43
- add_subdirectory (auth)
43
+ if (WITH_AUTH)
44
+ add_subdirectory (auth)
45
+ endif ()
44
46
add_subdirectory (providers)
45
47
if (WITH_DESKTOP)
46
48
add_subdirectory (app)
You can’t perform that action at this time.
0 commit comments