[root]/Modules/IGTPlanning
Wizard
(14 files, 2203 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 32 (100.0%) | 1361 (100.0%) | 42.5 |
| hliu | 30 (93.8%) | 1361 (100.0%) | 45.3 |
| jcfr | 2 (6.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: Update CMakeLists.txt - CMake 2.6 is now required
The following line have been added:
CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
IF(COMMAND CMAKE_POLICY)
CMAKE_POLICY(SET CMP0003 NEW)
ENDIF(COMMAND CMAKE_POLICY)
MARK_AS_ADVANCED(CMAKE_BACKWARDS_COMPATIBILITY)
0 lines of code changed in 1 file:
ENH: development work at MIT project week 2009.
26 lines of code changed in 3 files:
ENH: increased wizard widget height from 320 to 400.
1 lines of code changed in 1 file:
ENH: continued development.
0 lines of code changed in 3 files:
BUG: removed class vtkKWGuideWidget from here.
0 lines of code changed in 2 files:
ENH: more development.
0 lines of code changed in 3 files:
ENH: more development.
0 lines of code changed in 3 files:
ENH: added class vtkKWGuideWidget.
0 lines of code changed in 2 files:
ENH: more development.
0 lines of code changed in 1 file:
ENH: added module IGTPlanning.
1334 lines of code changed in 12 files: