- Jan 10, 2011
-
-
Brad King authored
-
Brad King authored
This adds the ability for packagers to specify that some libraries should use system versions and others should use the CMake versions. This allows a bit of flexibility and means Homebrew (an OSX package manager) no longer has to continue to patch the CMake build process. Inspired-by:
Mike McQuaid <mike@mikemcquaid.com>
-
- Jan 09, 2011
-
-
Kitware Robot authored
-
- Jan 08, 2011
-
-
Kitware Robot authored
-
- Jan 07, 2011
-
-
David Cole authored
CMake fails to find any registry paths on Windows 2000: according to regmon it fails with an access denied error. I double checked all the access rights and they are fine. After checking the access modes on MSDN I found that it says KEY_WOW64_32KEY / KEY_WOW64_64KEY are not supported on Windows 2000. CMake does not check if the current system supports Wow64 before applying these flags. This commit adds a check for IsWow64Process in kernel32.dll before adding these flags. Author: Axel Gembe <ago@bastart.eu.org> Signed-off-by:
Axel Gembe <ago@bastart.eu.org>
-
Kitware Robot authored
-
- Jan 06, 2011
-
-
Kitware Robot authored
-
- Jan 05, 2011
-
-
David Cole authored
Author: Rolf Eike Beer <eike@sf-mail.de> 2010-10-18 12:03:39
-
David Cole authored
To get from Hz to MHz the factor is 10^6, not 2^20. Author: Rolf Eike Beer <eike@sf-mail.de> 2010-10-24 06:31:11
-
Kitware Robot authored
-
- Jan 04, 2011
-
-
6b0c7ded Support explicitly set test costs in non-parallel testing.
-
51bb4935 Test TIMEOUT property explicitly set to zero should be honored
-
b29eadd8 Map multiple /FI flags for VS < 10 (#11649)
-
6529d7f6 Pass the expected value as the first argument
-
bce24e14 Avoid running CMake.Install test simultaneously with other tests
-
d11f439d Suppress erroneous warnings from Intel compiler
-
dbc79bd8 Fix constness in compiler id detection
-
f1392dc9 Recognize the Texas Instruments DSP compiler (#11645)
-
0bb22cfa Avoid passing string literal to char* type
-
90b0f2c6 Enable resource building with the intel compiler on windows.
-
Kitware Robot authored
-
- Jan 03, 2011
-
-
Zach authored
-
Bill Hoffman authored
-
Brad King authored
The header was included only under "#ifdef __linux", but not all Linux distributions provide the header. SystemInformation uses no symbols from this header, so do not include it.
-
Zach authored
-
Brad King authored
The /FI flag may be repeated so the flag table entry needs to be marked with SemicolonAppendable. This was already the case for VS 10.
-
Ben Boeckel authored
When the path has regular expression special characters, the PASS_REGULAR_EXPRESSION value can fail to compile.
-
Kitware Robot authored
-
- Jan 02, 2011
-
-
Kitware Robot authored
-
- Jan 01, 2011
-
-
Kitware Robot authored
-
- Dec 31, 2010
-
-
David Cole authored
-
David Cole authored
Googling for "warning #980: wrong number of actual arguments to intrinsic function" yields: http://software.intel.com/en-us/articles/cdiag980/ http://software.intel.com/en-us/articles/diagnostic-980-wrong-number-of-actual-arguments-to-intrinsic-function/ Since the compiler is at fault for issuing the warnings incorrectly, simply suppress them from CMake dashboard results.
-
Kitware Robot authored
-
- Dec 30, 2010
-
-
Kitware Robot authored
- Dec 29, 2010
-
-
Brad King authored
Since commit 70c2dc8a (Make compiler id detection more robust, 2008-03-10) we store compiler identification strings in test binaries using the form char* info = "info"; Use the const-correct char const* info = "info"; form instead. This allows the C++ compiler identification to work with "-Werror -Wall" or equivalent flags if the compiler would warn about const-to-non-const conversion.
-