Directory Libs/

Directory Created:
2006-02-14 16:01
Total Files:
1
Deleted Files:
0
Lines of Code:
121

[root]/Libs
        directory in repo CudaSupport (32 files, 1515 lines)
        directory in repo FreeSurfer (20 files, 4925 lines)
            directory in repo Testing (6 files, 2718 lines)
                directory in repo TestData (2 files, 0 lines)
        directory in repo GenerateCLP (10 files, 1907 lines)
            directory in repo Testing (7 files, 408 lines)
        directory in repo GenerateLM (8 files, 658 lines)
            directory in repo Testing (1 files, 1 lines)
        directory in repo IGT (15 files, 1606 lines)
            directory in repo Testing (1 files, 0 lines)
        directory in repo ITKCommandIO (9 files, 1537 lines)
        directory in repo LoadableModule (13 files, 1800 lines)
            directory in repo CMake (2 files, 18 lines)
            directory in repo Testing (3 files, 171 lines)
                directory in repo TestData (2 files, 19 lines)
        directory in repo MGHImageIO (9 files, 1346 lines)
        directory in repo MRML (198 files, 55316 lines)
            directory in repo Testing (32 files, 1316 lines)
                directory in repo Tcl (1 files, 70 lines)
                directory in repo TestData (13 files, 858 lines)
            directory in repo Wrapping (0 files, 0 lines)
                directory in repo Tcl (1 files, 6 lines)
        directory in repo MRMLIDImageIO (9 files, 1418 lines)
        directory in repo ModuleDescriptionParser (25 files, 6694 lines)
            directory in repo CMake (2 files, 18 lines)
            directory in repo Testing (3 files, 184 lines)
                directory in repo TestData (2 files, 220 lines)
        directory in repo QCTKWidgets (0 files, 0 lines)
            Folder removed from repo Plugins (0 files, 0 lines)
            directory in repo Resources (0 files, 0 lines)
                directory in repo Icons (2 files, 0 lines)
                Folder removed from repo UI (0 files, 0 lines)
        Folder removed from repo QMRMLWidgets (0 files, 0 lines)
            Folder removed from repo Plugins (0 files, 0 lines)
            Folder removed from repo Resources (0 files, 0 lines)
                Folder removed from repo UI (0 files, 0 lines)
        directory in repo Qdec (23 files, 8025 lines)
        directory in repo RemoteIO (18 files, 2198 lines)
        directory in repo SlicerIO (7 files, 1893 lines)
        directory in repo qCTKWidgets (32 files, 4118 lines)
            directory in repo CMake (2 files, 171 lines)
            directory in repo Plugins (22 files, 622 lines)
            directory in repo Resources (1 files, 9 lines)
                directory in repo UI (2 files, 432 lines)
        directory in repo qMRMLWidgets (24 files, 3529 lines)
            directory in repo Plugins (19 files, 656 lines)
            directory in repo Resources (1 files, 4 lines)
                directory in repo UI (2 files, 352 lines)
        directory in repo qVTKWidgets (7 files, 1236 lines)
            directory in repo Plugins (1 files, 0 lines)
            directory in repo Resources (1 files, 4 lines)
        directory in repo tclap (15 files, 498 lines)
            directory in repo config (10 files, 1080 lines)
            directory in repo docs (7 files, 3022 lines)
            directory in repo examples (10 files, 761 lines)
            directory in repo include (1 files, 1 lines)
                directory in repo tclap (26 files, 6887 lines)
            directory in repo msc (6 files, 218 lines)
                directory in repo examples (9 files, 1082 lines)
            directory in repo tests (124 files, 1660 lines)
        directory in repo vtkITK (64 files, 11817 lines)
            directory in repo Testing (3 files, 263 lines)
                directory in repo Tcl (2 files, 52 lines)
        directory in repo vtkTeem (47 files, 14544 lines)
            directory in repo Testing (1 files, 0 lines)

Lines of Code

Libs/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 36 (100.0%) 159 (100.0%) 4.4
pieper 11 (30.6%) 74 (46.5%) 6.7
barre 1 (2.8%) 63 (39.6%) 63.0
millerjv 3 (8.3%) 9 (5.7%) 3.0
partyd 1 (2.8%) 3 (1.9%) 3.0
wjp@bwh.harvard.edu 2 (5.6%) 2 (1.3%) 1.0
lorensen 4 (11.1%) 2 (1.3%) 0.5
jcfr 4 (11.1%) 2 (1.3%) 0.5
tgl 2 (5.6%) 1 (0.6%) 0.5
rjosest 1 (2.8%) 1 (0.6%) 1.0
naucoin 3 (8.3%) 1 (0.6%) 0.3
hliu 1 (2.8%) 1 (0.6%) 1.0
nicky 3 (8.3%) 0 (0.0%) 0.0

Most Recent Commits

jcfr 2009-12-08 18:34 Rev.: 11226

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:

  • Libs: CMakeLists.txt (changed)
jcfr 2009-12-07 23:13 Rev.: 11208

ENH: SlicerQT - Add Libs/qVTKWidgets

This library will contain QT widget that depends only on QT and CTK

0 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (changed)
jcfr 2009-10-30 19:13 Rev.: 10822

ENH: QtSlicer - Add GUIQT/Plugins directory. Rename QCTKWidgets/QMRMLWidgets to qCTKWidgets/qMRMLWidgets

2 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+2 -2)
partyd 2009-10-27 11:49 Rev.: 10765

ENH: provide MRML_TEST_DATA_DIR for use by vtkITK tests.

3 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+3)
pieper 2009-10-19 11:09 Rev.: 10688

COMP: remove slicerio from link list

1 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+1 -1)
jcfr 2009-10-07 06:47 Rev.: 10581

ENH: Initial commit of the QtSlicer port. Added subdirs Base/GUI2, Libs/QCTKWidgets and Libs/QMRMLWidgets. Updated Application/GUI/Slicer3 and Base/GUI/vtkSlicerApplication to be able to initialize and start QtModule. CMakeLists.txt also updated to consider the script CMake/Slicer3FindQT.cmake

0 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (changed)
nicky 2009-04-30 00:20 Rev.: 9361

ENH:Let CUDA_SUPPORT_ENABLED flag be set to ON automatically if CUDA is
found in the system.

0 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (changed)
pieper 2009-04-17 07:32 Rev.: 9254

COMP: check for cuda option before including the subdirectory

0 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (changed)
nicky 2009-04-17 04:18 Rev.: 9253

ENH:uncomment CudaSupport

0 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (changed)
pieper 2008-11-05 18:39 Rev.: 7799

COMP: change from TEEM to Teem for compatibility with current svn trunk of teem

0 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (changed)
pieper 2008-09-09 11:26 Rev.: 7557

COMP: disable cuda - it's not building correctly on all platforms

1 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+1 -1)
nicky 2008-09-09 10:49 Rev.: 7554

ENH:added CudaSupport to CMakeLists.txt

0 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (changed)
barre 2008-05-21 18:25 Rev.: 6803

ENH: make sure all sub-project in Libs/ can be built in a standalone fashion (remove 99% of the refs to Slicer3, macros, etc). Make sure all external toolkits are properly included, and fix some issues in MRML with respect to TEEM/vtkTeem.

63 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+63 -26)
tgl 2008-04-28 22:05 Rev.: 6570

ENH results of merge with 6049:6469 from branches/tgl_loadable_modules. Adds GenerateLM to create entry points for loadable module support via a text file and CMake macro. WFEngine, NeuroNav, Qdec and GAD are setup, other modules have text files, but the macro in the CMakeLists file is commented out. Updated Slicer3_main, the modules above will only be loaded if the DLL is found at run-time. Lastly made a change to vtkSlicerViewerWidget, check for a NULL ModelHierarchyLogic pointer before continuing, which might not be the right thing to do.

0 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (changed)
naucoin 2008-03-12 12:56 Rev.: 6178

ENH: enable using the curl libraries for remote data handling, and the remote io lib

0 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (changed)
tgl 2008-03-04 23:16 Rev.: 6069

ENH: Results of merge from branches/tgl_loadable_modules 5432:6047. Loadable Module support added, GAD is the only loadable module at this time. To enable LM, comment out the #define LOADABLEMODULESDEBUG line.

1 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+1)
wjp@bwh.harvard.edu 2008-03-01 08:30 Rev.: 6025

ENH: currently commented out building of RemoteIO Lib

1 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+1 -1)
wjp@bwh.harvard.edu 2008-02-25 09:42 Rev.: 5944

ENH: changes to compile remoteIO classes

1 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+1)
millerjv 2008-01-23 10:07 Rev.: 5576

ENH: More changes to the configurations of GenerateCLP to streamline its use and installation. Thanks to Hans Johnson for working through many of these issues.

6 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+6 -3)
pieper 2007-08-10 16:37 Rev.: 4039

COMP: add placeholders for SIGN

0 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (changed)
naucoin 2007-06-26 17:19 Rev.: 3691

ENH: adding the Qdec library here, moved from the namic sandbox

0 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (changed)
hliu 2007-03-09 13:28 Rev.: 2883

ENH: delete old IGT lib.

1 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+1)
lorensen 2006-12-23 15:27 Rev.: 1924

BUG: TEEM test should be isolated.

0 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (changed)
pieper 2006-12-23 14:35 Rev.: 1923

BUG: fix cmake test for teem in libs (missing ELSE)

0 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (changed)
lorensen 2006-12-22 13:42 Rev.: 1922

COMP: subdirs ordering is important. vtkTeem must be built before MRML.

0 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (changed)
pieper 2006-12-12 10:13 Rev.: 1794

ENH: make teem optional

5 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+5 -1)
rjosest 2006-12-11 18:35 Rev.: 1786

ENH: Adding vtkTeem library. This library is meant to encapsulate Teem functionality as VTK classes (similar to vtkITK and ITK)

1 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+1)
lorensen 2006-11-25 11:11 Rev.: 1677

ENH: tclap can now be used with FIND_PACKAGE.

1 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+1)
pieper 2006-10-02 12:12 Rev.: 1394

ENH: code from Georghe at MGH, modified for slicer, for reading MGH files

1 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+1)
pieper 2006-09-20 10:54 Rev.: 1285

BUG: need to put the lib depencies in the correct order so cmake variables get added to the cache before they are used

4 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+4 -2)
naucoin 2006-09-06 16:43 Rev.: 1190

ENH: adding FreeSurfer surface, scalar and annotation readers

1 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+1)
millerjv 2006-06-27 16:23 Rev.: 761

ENH: added ITKCommandIO and MRMLIDImageIO

2 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+2 -1)
pieper 2006-06-16 15:40 Rev.: 593

ENH: changes for windows compatibility of ITKCommandIO and slicerio -- still having a link problem on windows, so ITKCommandIO disabled for now

2 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+2)
millerjv 2006-06-09 15:34 Rev.: 502

ENH: stubs for parser

1 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+1)
lorensen 2006-04-22 09:58 Rev.: 319

ENH: Added GenearteCLP.

1 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (+1)
pieper 2006-02-14 16:01 Rev.: 40

COMP: added vtkITK and MRML libs

60 lines of code changed in 1 file:

  • Libs: CMakeLists.txt (new 60)
Generated by StatSVN 0.5.0