[root]/Modules/PythonGADScriptedModule

| Author | Changes | Lines of Code | Lines per Change |
|---|---|---|---|
| Totals | 11 (100.0%) | 367 (100.0%) | 33.3 |
| lantiga | 7 (63.6%) | 332 (90.5%) | 47.4 |
| barre | 3 (27.3%) | 35 (9.5%) | 11.6 |
| jcfr | 1 (9.1%) | 0 (0.0%) | 0.0 |
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: comment custom observers out
0 lines of code changed in 1 file:
ENH: Committing the sample Python scripted module code back
0 lines of code changed in 1 file:
ENH: Committing changes to Python infrastructure
0 lines of code changed in 1 file:
ENH: fix some minor installation issues; the Python modules are now found correctly. The Qdec module doesn't complain anymore. In general, the Tcl/Python subtree structure for each module is kept in the installation tree or build tree, so it should be easy to understand where files are coming from. Thanks to Dan and Luca for the feedback.
2 lines of code changed in 1 file:
ENH: Plugins and Modules have specific location for their binairies/dll, different from the usual bin/ and lib/ (i.e. lib/Slicer3/Plugins, lib/Slicer3/Modules). This was achieved by setting LIBRARY_OUTPUT_PATH and EXECUTABLE_OUTPUT_PATH from the slicer3_set_default_modules_output_path and slicer3_set_default_plugins_output_path macro, but it is a dangerous practice to override a global variable, as it propagates to subtrees. As a result, SlicerTractographySeeding, which combines a module and a CLP in the same CMakeLists, was not built to the proper directory; ExtractSkeleton was not output in the right location either, and several tests ended up in Plugins instead of bin/ (GaussianBlurImageFilterTest, OrientImageTest). Fix this by creating a macro that will set the LIBRARY_OUTPUT_DIRECTORY and RUNTIME_OUTPUT_DIRECTORY explicitly on a *target* basis, using SET_TARGET_PROPERTIES. This removes the side-effects described above.
1 lines of code changed in 1 file:
ENH: Slicer3 Spring Installation Clean Up
32 lines of code changed in 1 file:
BUG: Only copy Python scripted module over if USE_PYTHON is ON
19 lines of code changed in 1 file:
ENH: Introducing Python scripted modules
313 lines of code changed in 3 files: