File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -399,7 +399,9 @@ add_subdirectory (io)
399
399
add_subdirectory (net )
400
400
add_subdirectory (graf2d )
401
401
add_subdirectory (graf3d )
402
- add_subdirectory (gui )
402
+ if (NOT minimal )
403
+ add_subdirectory (gui )
404
+ endif ()
403
405
add_subdirectory (montecarlo )
404
406
if (geom )
405
407
add_subdirectory (geom )
Original file line number Diff line number Diff line change @@ -68,7 +68,9 @@ ROOT_EXECUTABLE(eventexe MainEvent.cxx LIBRARIES Event RIO Tree TreePlayer Hist
68
68
ROOT_ADD_TEST (test -event COMMAND eventexe )
69
69
70
70
#---guitest------------------------------------------------------------------------------------
71
- ROOT_EXECUTABLE (guitest guitest.cxx LIBRARIES RIO Gui Gpad Hist )
71
+ if (NOT minimal ) # gui is not built in minimal
72
+ ROOT_EXECUTABLE (guitest guitest.cxx LIBRARIES RIO Gui Gpad Hist )
73
+ endif ()
72
74
73
75
#---hsimple------------------------------------------------------------------------------------
74
76
#ROOT_EXECUTABLE(hsimple hsimple.cxx LIBRARIES RIO Tree Hist)
Original file line number Diff line number Diff line change 6
6
7
7
add_subdirectory (tree )
8
8
add_subdirectory (treeplayer )
9
- add_subdirectory (treeviewer )
9
+ if (NOT minimal ) # gui is not built in minimal
10
+ add_subdirectory (treeviewer )
11
+ endif ()
10
12
if (webgui )
11
13
add_subdirectory (webviewer )
12
14
endif ()
Original file line number Diff line number Diff line change 6
6
7
7
# @author Jakob Blomer CERN
8
8
9
+ if (NOT minimal ) # gui is not built in minimal
10
+ return ()
11
+ endif ()
12
+
9
13
ROOT_ADD_GTEST (ntuple_browse ntuple_browse.cxx LIBRARIES Core Gui ROOTNTuple ROOTNTupleBrowse )
You can’t perform that action at this time.
0 commit comments