[root]/Modules/ModelMirror
ImageData
(6 files, 0 lines)
Resources
(1 files, 206 lines)

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 25 (100.0%) | 2114 (100.0%) | 84.5 |
| wjp@bwh.harvard.edu | 21 (84.0%) | 2112 (99.9%) | 100.5 |
| naucoin | 2 (8.0%) | 2 (0.1%) | 1.0 |
| jcfr | 2 (8.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: 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:
COMP: reducing compiler warnings
2 lines of code changed in 2 files:
BUG: fixing backface cull and color, got rid of multiple pass crash and crash on exit
46 lines of code changed in 3 files:
ENH: adding model mirror to build, though it still has some bugs
0 lines of code changed in 5 files:
ENH: adding model mirroring framework. has bugs in logic, not added to modules CMakeLists.txt
2066 lines of code changed in 13 files: