summaryrefslogtreecommitdiffstats
path: root/Tests/BundleUtilities
Commit message (Collapse)AuthorAgeFilesLines
* Remove CMake-language block-end command argumentsKitware Robot2012-08-131-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 Stimpson2012-01-211-2/+2
|
* Fix new BundleUtilities test failure on Mac 10.4.xClinton Stimpson2012-01-201-1/+1
|
* GetPrerequisites: Add test for @rpath support.Clinton Stimpson2012-01-202-0/+82
|
* BundleUtilities: Add rpath to loadable modules in test.Clinton Stimpson2011-06-023-25/+70
|
* BundleUtilities: Print reason for not loading module.soClinton Stimpson2011-06-011-3/+7
|
* BundleUtilities: Fix issues with custom target DEPENDS in test (#12034)Clinton Stimpson2011-05-313-2/+11
|
* BundleUtilities: Fix test when using xcode (#12034)Clinton Stimpson2011-05-311-1/+1
|
* BundleUtilities: Work w/ non .app exes on Mac (#12034)Clinton Stimpson2011-05-2711-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.