summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/try_compile/BadLinkLibraries-stderr.txt
Commit message (Collapse)AuthorAgeFilesLines
* Tests/RunCMake: Match diagnostic line numbers more robustlyBrad King2024-10-031-1/+1
|
* try_compile: Add keyword-dispatched signatureMatthew Woehlke2022-09-051-1/+1
| | | | | | | | | | | | | | | | Introduce a new signature for try_compile (and try_run) which removes the `bindir` argument and requires the SOURCES tag. This will eventually allow us to add other ways of providing sources, but also allows us to change the behavior without breaking compatibility. The old signature uses a special, but non-unique temporary location inside the specified `bindir`, which conventionally is just the project's build directory. The new signature unconditionally uses the a unique temporary directory which is unconditionally within the project's build directory (which is no longer separately specified). This ensures that successive runs do not overwrite previous runs, will simplify debugging, and should also, eventually, allow us to execute multiple trials in parallel.
* try_run: Add support for LINK_LIBRARIES option.Matt McCormick2015-01-261-2/+2
| | | | | | | | Most functionality is already implemented in Source/cmCoreTryCompile.{h,cxx}. Document and improve argument parsing. This functionality is already being used by a number of modules, like CheckCSourceCompiles.cmake, but it is not documented.
* try_compile: Add test for bad call error casesBrad King2013-05-311-0/+5
Add a RunCMake.try_compile test to cover cases of bad invocation of the try_compile command.