[Cmake-commits] CMake branch, next, updated. v2.8.10.2-1136-g982483b
Brad King
brad.king at kitware.com
Fri Nov 30 07:59:17 EST 2012
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, next has been updated
via 982483ba8077821cd994fc9039039c14b8a879df (commit)
via 33bf5949883c8e1840c440731d6156ad8112b8fd (commit)
from ef42895457d4981e71776b65d0e8260de54ceb42 (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=982483ba8077821cd994fc9039039c14b8a879df
commit 982483ba8077821cd994fc9039039c14b8a879df
Merge: ef42895 33bf594
Author: Brad King <brad.king at kitware.com>
AuthorDate: Fri Nov 30 07:59:13 2012 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Nov 30 07:59:13 2012 -0500
Merge topic 'windows-ce-env-helper' into next
33bf594 WinCE: Avoid unused parameter warning on non-Windows platforms
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=33bf5949883c8e1840c440731d6156ad8112b8fd
commit 33bf5949883c8e1840c440731d6156ad8112b8fd
Author: Brad King <brad.king at kitware.com>
AuthorDate: Fri Nov 30 07:58:12 2012 -0500
Commit: Brad King <brad.king at kitware.com>
CommitDate: Fri Nov 30 07:58:12 2012 -0500
WinCE: Avoid unused parameter warning on non-Windows platforms
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index ab5a59b..fba4860 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -4029,6 +4029,8 @@ int cmake::WindowsCEEnvironment(const char* version, const std::string& name)
std::cout << "set LIB=" << parser.GetLibraryDirectories() <<std::endl;
return 0;
}
+#else
+ (void)version;
#endif
std::cerr << "Could not find " << name;
-----------------------------------------------------------------------
Summary of changes:
Source/cmake.cxx | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list