
| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 39 (100.0%) | 1518 (100.0%) | 38.9 |
| nicky | 36 (92.3%) | 1518 (100.0%) | 42.1 |
| pieper | 2 (5.1%) | 0 (0.0%) | 0.0 |
| jcfr | 1 (2.6%) | 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:
BUG: remove unneeded file per suggestion from Dominique Belhachemi
0 lines of code changed in 1 file:
ENH:better support in finding CUDA on compile level.
0 lines of code changed in 1 file:
COMP: check for cuda option before including the subdirectory
0 lines of code changed in 1 file:
BUG:uncomment TESTING in CudaSupport CMakeLists.txt
3 lines of code changed in 1 file:
BUG:include stdlib.h to CudappMemoryBase.h
1 lines of code changed in 1 file:
ENH:added CudaSupport libs
1514 lines of code changed in 33 files: