[Cmake-commits] CMake branch, master, updated. ebdda6ed138173a287e52d7877c528ec8ccc817f
cmake-commits at cmake.org
cmake-commits at cmake.org
Mon Mar 15 14:55:46 EDT 2010
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, master has been updated
via ebdda6ed138173a287e52d7877c528ec8ccc817f (commit)
via 6bd50fad0d8f55b46d18b9b8051926ada5da0f55 (commit)
from 34ebee5922eb6e0ca1118f2c6abe63f5c4f49922 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ebdda6ed138173a287e52d7877c528ec8ccc817f
commit ebdda6ed138173a287e52d7877c528ec8ccc817f
Author: Bill Hoffman <bill.hoffman at kitware.com>
Date: Mon Mar 15 14:53:12 2010 -0400
Default to gcc as the compiler.
The compiler id is checked for C++ and C, if there is not one
of those available, then just default to gcc. This makes it
work with Fortran, or None projects.
diff --git a/Source/cmExtraCodeBlocksGenerator.cxx b/Source/cmExtraCodeBlocksGenerator.cxx
index 5cbef8c..4cb2b48 100644
--- a/Source/cmExtraCodeBlocksGenerator.cxx
+++ b/Source/cmExtraCodeBlocksGenerator.cxx
@@ -630,8 +630,8 @@ std::string cmExtraCodeBlocksGenerator::GetCBCompilerId(const cmMakefile* mf)
std::string hostSystemName = mf->GetSafeDefinition("CMAKE_HOST_SYSTEM_NAME");
std::string systemName = mf->GetSafeDefinition("CMAKE_SYSTEM_NAME");
- std::string compilerId = mf->GetRequiredDefinition(compilerIdVar.c_str());
- std::string compiler = "gcc";
+ std::string compilerId = mf->GetSafeDefinition(compilerIdVar.c_str());
+ std::string compiler = "gcc"; // default to gcc
if (compilerId == "MSVC")
{
compiler = "msvc8";
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6bd50fad0d8f55b46d18b9b8051926ada5da0f55
commit 6bd50fad0d8f55b46d18b9b8051926ada5da0f55
Author: Bill Hoffman <bill.hoffman at kitware.com>
Date: Mon Mar 15 14:25:32 2010 -0400
Change to UTC for dashboard time.
diff --git a/CTestConfig.cmake b/CTestConfig.cmake
index 0add34b..3903222 100644
--- a/CTestConfig.cmake
+++ b/CTestConfig.cmake
@@ -10,7 +10,7 @@
# See the License for more information.
#=============================================================================
set(CTEST_PROJECT_NAME "CMake")
-set(CTEST_NIGHTLY_START_TIME "21:00:00 EDT")
+set(CTEST_NIGHTLY_START_TIME "1:00:00 UTC")
set(CTEST_DROP_METHOD "http")
set(CTEST_DROP_SITE "www.cdash.org")
-----------------------------------------------------------------------
Summary of changes:
CTestConfig.cmake | 2 +-
Source/cmExtraCodeBlocksGenerator.cxx | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list