summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/build_command/BeforeProject-stderr.txt
Commit message (Collapse)AuthorAgeFilesLines
* build_command: Return a "cmake --build" command-lineBrad King2013-11-151-4/+6
| | | | | | | | | | | | | | Re-implement the build_command() command to use "cmake --build" instead of generating a native build tool invocation directly. This command will internally invoke the proper native build tool. This avoids requiring cmGlobalGenerator::GenerateBuildCommand to produce a string so that it can be later refactored to produce a vector with no quoting or escaping. It will also allow us to later teach CMake to delay the decision about which build tool to invoke until after the project build system is generated to disk. For example, on Visual Studio 10 and above the preferred command-line tool is MSBuild, but we need to fall back to devenv if the .sln has Intel Fortran .vfproj files.
* build_command: Fail early without CMAKE_MAKE_PROGRAM (#14005)Brad King2013-03-121-0/+5
If CMAKE_MAKE_PROGRAM is not set fail with an error message instead of crashing. Suggest calling project() or enable_language() first to ensure that CMAKE_MAKE_PROGRAM is set.