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 | ||||
* | BundleUtilities: Fix issues with custom target DEPENDS in test (#12034) | Clinton Stimpson | 2011-05-31 | 1 | -2/+3 |
| | |||||
* | 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 | 1 | -0/+44 |
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. |