[Cmake-commits] CMake branch, next, updated. v2.8.8-2997-gcf85f70

Stephen Kelly steveire at gmail.com
Tue Jun 5 05:30:38 EDT 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  cf85f70a90fa18d94a953bab7269eacf990fc00b (commit)
       via  e8b958b7cc9f2533ad0c577db23c39c0de400cad (commit)
      from  ecb3013ebdda66d3df24a23f95cddafecb43481d (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=cf85f70a90fa18d94a953bab7269eacf990fc00b
commit cf85f70a90fa18d94a953bab7269eacf990fc00b
Merge: ecb3013 e8b958b
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Tue Jun 5 05:30:35 2012 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Jun 5 05:30:35 2012 -0400

    Merge topic 'position-independent-targets' into next
    
    e8b958b Don't run the PositionIndependentCode test on WIN32.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e8b958b7cc9f2533ad0c577db23c39c0de400cad
commit e8b958b7cc9f2533ad0c577db23c39c0de400cad
Author:     Stephen Kelly <steveire at gmail.com>
AuthorDate: Tue Jun 5 11:28:58 2012 +0200
Commit:     Stephen Kelly <steveire at gmail.com>
CommitDate: Tue Jun 5 11:28:58 2012 +0200

    Don't run the PositionIndependentCode test on WIN32.
    
    Windows has no fPIC equivalent, and this avoids having to create exports
    to properly create dlls.

diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt
index 76c45fa..a82a1bd 100644
--- a/Tests/CMakeLists.txt
+++ b/Tests/CMakeLists.txt
@@ -315,7 +315,9 @@ IF(BUILD_TESTING)
 
   ADD_TEST_MACRO(Module.GenerateExportHeader GenerateExportHeader)
 
-  ADD_TEST_MACRO(PositionIndependentTargets PositionIndependentTargets)
+  if(NOT WIN32)
+    ADD_TEST_MACRO(PositionIndependentTargets PositionIndependentTargets)
+  endif()
 
   ADD_TEST(LinkFlags-prepare
     ${CMAKE_CTEST_COMMAND} -C \${CTEST_CONFIGURATION_TYPE}

-----------------------------------------------------------------------

Summary of changes:
 Tests/CMakeLists.txt |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list