- 30 Aug, 2010 1 commit
-
-
Alexander Neundorf authored
Now the version number is also printed if no required version was specified, but a version number was detected (showing more information shouldn't hurt). The code for generating the failure message in config-mode is moved into a separate helper macro, it was becoming too much. Alex
-
- 29 Aug, 2010 6 commits
-
-
Alexander Neundorf authored
When this option is used for FPHSA(), it automatically handles the information created by a preceding find_package(NO_MODULE) all and creates a proper success/error message. Alex
-
Alexander Neundorf authored
Alex
-
Alexander Neundorf authored
-remove unnecessary arguments _VAR1 -move code for deciding the type of the message into helper macro _FPHSA_FAILURE_MESSAGE() Alex
-
Alexander Neundorf authored
Before this patch there were two separate vectors, and the code made sure they always had the same size. With this patch the code doesn't have to ensure this anymore, there is only one vector now. Alex
-
Alexander Neundorf authored
If in config-mode config files have been found by find_package(), but their version didn't match the requested version, now all considered files and their versions are printed (instead of saying "didn't find config file) Alex
-
Alexander Neundorf authored
As suggested on cmake-devel, find_package in Config-mode now records all considered config-files and their versions in <package>_CONSIDERED_CONFIGS and <package>_CONSIDERED_VERSIONS respectively. Alex
-
- 26 Aug, 2010 1 commit
-
-
Kitware Robot authored
-
- 25 Aug, 2010 1 commit
-
-
Kitware Robot authored
-
- 24 Aug, 2010 4 commits
-
-
Kitware Robot authored
- 23 Aug, 2010 3 commits
-
-
David Cole authored
This commit introduces the ability to add custom targets that correspond to individual ExternalProject steps. The main motivation behind this new feature is to drive sub-project based dashboard steps as external projects with separate targets for update, configure, build and test output. This makes it easy to construct a ctest -S script to drive such a dashboard. With no STEP_TARGETS defined, there are no additional custom targets introduced, to minimize the chatter in the target name space. Clients may define STEP_TARGETS on a per-ExternalProject_Add basis, or at the directory level by setting the EP_STEP_TARGETS directory property.
-
Alexander Neundorf authored
Alex
-
Kitware Robot authored
-
- 22 Aug, 2010 1 commit
-
-
Kitware Robot authored
-
- 21 Aug, 2010 1 commit
-
-
Kitware Robot authored
-
- 20 Aug, 2010 1 commit
-
-
Kitware Robot authored
-
- 19 Aug, 2010 9 commits
-
-
Robert Goulet authored
When none of the options /Z7, /Zi and /ZI are specified in the cmake project settings, the project will open in the editor with "Program Database" as the default debug information format, ending up always generating PDBs regardless of project configuration. Modify the output project file so that if the debug information format is not specified in the cmake project settings it will default to no PDB generated, just like all the previous other Visual Studio versions. This problem comes from the fact that Microsoft changed the default setting of the debug information format to be "Program Database" instead of "Disabled".
-
Kitware Robot authored
- 18 Aug, 2010 4 commits
-
-
Brad King authored
The last remaining call to this method exists only for compatibility. Remove the method and put its implementation inline in place of the last call.
-
Brad King authored
Refactor how cmCTestMemCheckHandler computes the memory tester command line options to avoid encoding them in a single string just to parse them again. The EscapeSpaces uses backslahes to escape spaces on UNIX platforms, so replace other calls to it in CTest that are used to create human-readable strings with simple double-quoting.
-
Zach authored
-
Kitware Robot authored
-
- 17 Aug, 2010 8 commits
-
-
Rolf Eike Beer authored
-
Brad King authored
-
Alexander Neundorf authored
In CMAKE_DETERMINE_COMPILER_ID_VENDOR() the compiler is called with various arguments. In some cases, this can make the compiler hang and wait forever for input (e.g. "as -v"). That's why add an timeout so it terminates finally. 10 seconds should be more than enough, this is the time it takes to startup the compiler, which is usually quite fast. Alex
-