[root]/Modules/Statistics
LabelStatistics
(11 files, 1405 lines)
Testing
(1 files, 0 lines)
Testing
(1 files, 0 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 3 (100.0%) | 14 (100.0%) | 4.6 |
| kquintus | 1 (33.3%) | 7 (50.0%) | 7.0 |
| barre | 1 (33.3%) | 7 (50.0%) | 7.0 |
| jcfr | 1 (33.3%) | 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: Slicer3 Spring Installation Clean Up
7 lines of code changed in 1 file:
ENH: moved VolumeMath to LabelStatistics
7 lines of code changed in 1 file: