Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Tests: Fix RunCMake.CTest to tolerate source line number changes | Brad King | 2015-04-27 | 1 | -1/+1 |
| | |||||
* | build_command: Return a "cmake --build" command-line | Brad King | 2013-11-15 | 1 | -5/+5 |
| | | | | | | | | | | | | | | 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. | ||||
* | Cygwin: Avoid legacy warnings in RunCMake.* tests | Brad King | 2013-08-13 | 1 | -1/+1 |
| | | | | | | Set the minimum required version of CMake high enough to avoid the warning for CMAKE_LEGACY_CYGWIN_WIN32. The warning appears on stderr and breaks the expected output matching. | ||||
* | CTest: Fail early without PROJECT_BINARY_DIR (#14005) | Brad King | 2013-03-12 | 5 | -0/+19 |
Do not use PROJECT_BINARY_DIR before it is defined. If it is not defined when needed, fail with an error message suggesting that the project() command be invoked first. |