summaryrefslogtreecommitdiffstats
path: root/Tests/BundleTest/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Tests: Suppress failures on macOS arm64 due to separate Xcode signing phaseBrad King2021-02-221-0/+9
| | | | | | | | | | | | | | | | Some tests fail because Xcode runs `POST_BUILD` commands before signing the binaries they run. Tell the linker to perform ad-hoc codesign even though Xcode normally tells it not to. Other tests fail because `install_name_tool` does not revise ad-hoc signatures without the codesign `linker-signed` flag. Add that flag ourselves where needed by our tests. For now these changes help our test suite pass so we can use it to cover everything else. Both of these cases may need further investigation to update CMake to help projects in general. Issue: #21845, #21854
* Tests: Remove explicit no-signing marks from BundleTestBrad King2021-02-221-6/+2
| | | | | | | | These were added by commit e29a92f525 (Xcode: Make BundleTests compatible with Xcode 11, 2019-09-01, v3.16.0-rc1~158^2). The real problem is that the `.app` is constructed with text files under the `.app/Contents/MacOS/` folder. Move those, and drop the special no-signing configuration.
* Xcode: Make BundleTests compatible with Xcode 11Gregor Jasny2019-09-011-1/+5
|
* Tests/BundleTest: Drop use of ChangeLog.txtBrad King2014-02-071-2/+2
| | | | | The test just wants a source file from outside its tree. Use README.rst instead.
* Remove CMake-language block-end command argumentsKitware Robot2012-08-131-5/+5
| | | | | | | | | | | | | | | | | 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
* Convert CMake-language commands to lower caseKitware Robot2012-08-131-50/+50
| | | | | | | | | | | | | | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed
* Removed most usage of Carbon in favour of CoreFoundationSean McBride2011-01-311-6/+6
|
* ENH: Add indirect dependency to Carbon and call a Carbon function from ↵David Cole2008-09-021-2/+13
| | | | executable. This will allow detecting broken dependency chaining for '-framework blah' style lib dependencies.
* ENH: Changes that allow configuring/building BundleTest test separately from ↵David Cole2008-08-271-2/+2
| | | | the main CMake build. (Eliminate reference to CMake_SOURE_DIR.)
* ENH: preclean some warningsKen Martin2008-03-251-0/+1
|
* ENH: Add InstallNameFixupPath to support installing built frameworks on the ↵David Cole2007-08-241-5/+5
| | | | Mac. Change Application to Applications in the BundleTest. Also correct small typo (tcl->Tcl) noted in bug 4572.
* ENH: Improve the test to create a bundle in the subdirectoryAndy Cedilnik2006-07-061-1/+4
|
* BUG: If the source file specified is not in a source tree, do not use full ↵Andy Cedilnik2006-07-051-0/+2
| | | | path to the file
* ENH: add a test for find framework stuff in find_library, and fix the ↵Bill Hoffman2006-03-291-0/+31
| | | | framework search stuff
* ENH: Add support for adding content to bundlesAndy Cedilnik2006-03-281-1/+28
|
* ENH: Add package to bundle testAndy Cedilnik2006-03-101-0/+3
|
* BUG: Fixed installation of MacOSX Bundle executables and the corresponding ↵Brad King2006-03-031-0/+22
| | | | install_name remapping support. Extended the BundleTest test to check that this all works. Part of these fixes required changing the signature of AppendDirectoryForConfig in all generators. It now accepts prefix and suffix strings to deal with whether leading or trailing slashes should be included with the configuration subdirectory.
* ENH: add a bundle testBill Hoffman2005-07-131-0/+4