[root]/Applications/CLI/MIDASApplications
DownloadSlicerTutorials
(3 files, 406 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 2 (100.0%) | 2 (100.0%) | 1.0 |
| aylward | 1 (50.0%) | 2 (100.0%) | 2.0 |
| jcfr | 1 (50.0%) | 0 (0.0%) | 0.0 |
ENH: In CMakeLists.txt, change deprecated SUBDIRS command into ADD_SUBDIRECTORY
See http://cmake.org/cmake/help/cmake-2-8-docs.html#command:subdirs
when subdirs command was taking a list of directory, change it
using the following pattern:
Before:
subdirs(sagarmatha kumbhu eiger)
After:
SET(dirs
sagarmatha
kumbhu
eiger
)
FOREACH(dir ${dirs})
ADD_SUBDIRECTORY(${dir})
ENDFOREACH(dir)
0 lines of code changed in 1 file:
ENH: Direct access to tutorials from within Slicer3
2 lines of code changed in 1 file: