[Cmake-commits] CMake branch, next, updated. v2.8.11-2524-g4bf23b5
Brad King
brad.king at kitware.com
Wed Jun 5 09:05:47 EDT 2013
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 4bf23b574aa97ddd9723efbe3f72f8e1e0d81891 (commit)
via 3a7898abe28f55f5da3febb3397e5aa3f30f0e62 (commit)
from 6aa8810ffdff230ad09b5cba61fe746dad090b4d (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=4bf23b574aa97ddd9723efbe3f72f8e1e0d81891
commit 4bf23b574aa97ddd9723efbe3f72f8e1e0d81891
Merge: 6aa8810 3a7898a
Author: Brad King <brad.king at kitware.com>
AuthorDate: Wed Jun 5 09:05:45 2013 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Jun 5 09:05:45 2013 -0400
Merge topic 'test-genex-HEAD-target' into next
3a7898a Tests/IncludeDirectories: Export shared library symbol on Windows
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=3a7898abe28f55f5da3febb3397e5aa3f30f0e62
commit 3a7898abe28f55f5da3febb3397e5aa3f30f0e62
Author: Brad King <brad.king at kitware.com>
AuthorDate: Wed Jun 5 08:52:38 2013 -0400
Commit: Brad King <brad.king at kitware.com>
CommitDate: Wed Jun 5 08:52:38 2013 -0400
Tests/IncludeDirectories: Export shared library symbol on Windows
The Watcom linker does not like to create shared libraries with no
exports.
diff --git a/Tests/IncludeDirectories/TargetIncludeDirectories/other.cpp b/Tests/IncludeDirectories/TargetIncludeDirectories/other.cpp
index f388ef8..6673471 100644
--- a/Tests/IncludeDirectories/TargetIncludeDirectories/other.cpp
+++ b/Tests/IncludeDirectories/TargetIncludeDirectories/other.cpp
@@ -1,4 +1,6 @@
-
-int main() {
+#ifdef _WIN32
+__declspec(dllexport)
+#endif
+int other() {
return 0;
}
-----------------------------------------------------------------------
Summary of changes:
.../TargetIncludeDirectories/other.cpp | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list