Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove CMake-language block-end command arguments | Kitware Robot | 2012-08-13 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. Run the following shell code: for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | egrep -z -v 'Tests/CMakeTests/While-Endwhile-' | xargs -0 sed -i -f convert.sed && rm convert.sed | ||||
* | Fix BundleUtilities test failure with space in build path. | Clinton Stimpson | 2012-01-21 | 1 | -2/+2 |
| | |||||
* | Fix new BundleUtilities test failure on Mac 10.4.x | Clinton Stimpson | 2012-01-20 | 1 | -1/+1 |
| | |||||
* | GetPrerequisites: Add test for @rpath support. | Clinton Stimpson | 2012-01-20 | 2 | -0/+82 |
| | |||||
* | BundleUtilities: Add rpath to loadable modules in test. | Clinton Stimpson | 2011-06-02 | 3 | -25/+70 |
| | |||||
* | BundleUtilities: Print reason for not loading module.so | Clinton Stimpson | 2011-06-01 | 1 | -3/+7 |
| | |||||
* | BundleUtilities: Fix issues with custom target DEPENDS in test (#12034) | Clinton Stimpson | 2011-05-31 | 3 | -2/+11 |
| | |||||
* | BundleUtilities: Fix test when using xcode (#12034) | Clinton Stimpson | 2011-05-31 | 1 | -1/+1 |
| | |||||
* | BundleUtilities: Work w/ non .app exes on Mac (#12034) | Clinton Stimpson | 2011-05-27 | 11 | -0/+229 |
Also add a test of BundleUtilities including an exe, some shared libs, a plugin, and a framework-style lib. This test presently runs (and this functionality works) on Linux, Mac and Windows. For now, the framework-style lib is built as a plain old shared lib because there is another yet-unresolved issue with local frameworks without rpaths on the Mac. |