Skip to content
Snippets Groups Projects
  1. Oct 03, 2013
    • Brad King's avatar
      cmake: Split -E command implementation into separate source file · c04995b4
      Brad King authored
      Move the cmake::ExecuteCMakeCommand static method and all the static
      methods it calls out of the 'cmake' class to a separate 'cmcmd' class.
      Build the latter as part of the main cmake executable with cmakemain.cxx
      and not in CMakeLib.  Drop unused header includes from "cmake.cxx".
      
      By moving this implementation out of cmake.cxx we avoid carrying it
      around in all the executables that use class 'cmake'.  It is needed only
      for the main "cmake -E" functionality.
      c04995b4
    • Brad King's avatar
      Merge topic 'xcode-5' · e27523a8
      Brad King authored and Kitware Robot's avatar Kitware Robot committed
      a3194ff4 Xcode: Fix OBJECT library support for Xcode 5 (#14254)
      dff8d113 Xcode: Drop XCODE_DEPEND_HELPER for Xcode >= 5
      11803224 Xcode: Teach Tests/BuildDepends to allow LINK_DEPENDS_NO_SHARED failure
      765b46d1 Xcode: Fix test architecture selection for Xcode >= 5
      e27523a8
    • Kitware Robot's avatar
      CMake Nightly Date Stamp · a9a48ff9
      Kitware Robot authored
      a9a48ff9
  2. Oct 02, 2013
    • Brad King's avatar
      Xcode: Fix OBJECT library support for Xcode 5 (#14254) · a3194ff4
      Brad King authored
      Xcode 2.1 through 4 supported $(CURRENT_ARCH) in a PBXFileReference
      'path' value used in the "Link Binary with Libraries" build phase.
      CMake uses this to reference object file locations on link lines to
      bring in OBJECT library content.  However, Xcode 5 now evaluates the
      $(CURRENT_ARCH) reference in this context as "undefined_arch" so the
      wrong path is given to the linker.  There seems to be no alternative way
      to produce an architecture-specific value in a PBXFileReference.
      
      Fortunately Xcode 5 now also handles link dependencies for paths linked
      through OTHER_LDFLAGS.  For Xcode >= 5, move the OBJECT library object
      file references from the link build phase to OTHER_LDFLAGS.  We can
      still show the object files in the source group listing in either case.
      a3194ff4
    • Brad King's avatar
      Xcode: Drop XCODE_DEPEND_HELPER for Xcode >= 5 · dff8d113
      Brad King authored
      Xcode 5.0 now computes dependencies from files linked through
      OTHER_LDFLAGS, so we no longer need the XCODE_DEPEND_HELPER hack to
      re-link dependents when targets change.
      dff8d113
    • Brad King's avatar
      Xcode: Teach Tests/BuildDepends to allow LINK_DEPENDS_NO_SHARED failure · 11803224
      Brad King authored
      Xcode 5.0 now relinks targets when their shared libraries dependencies
      are modified, and there seems to be no way to stop it.  Report this as a
      known limitation in the test output and do not fail.
      11803224
    • Brad King's avatar
      Xcode: Fix test architecture selection for Xcode >= 5 · 765b46d1
      Brad King authored
      In Tests/Architecture and Tests/BuildDepends/Project we select a set of
      OS X cpu architectures to use for the test.  Prior to Xcode 4 we always
      used i386 and ppc.  Starting with Xcode 4, the tools do not support ppc
      but do support x86_64, so we switch to that.  Fix the version check to
      recognize Xcode >= 5 as at least Xcode 4 and use the new architectures.
      765b46d1
    • Kitware Robot's avatar
      CMake Nightly Date Stamp · c0133a58
      Kitware Robot authored
      c0133a58
  3. Oct 01, 2013
  4. Sep 30, 2013
    • Brad King's avatar
      Use first custom command for the same output (#14446) · dccd4949
      Brad King authored
      In buggy code like
      
       add_custom_command(
         OUTPUT  ${CMAKE_CURRENT_BINARY_DIR}/out.h
         MAIN_DEPENDENCY ${CMAKE_CURRENT_SOURCE_DIR}/out.h.in
         ...)
       add_custom_command(
         OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/out.h
         ...)
      
      that has more than one rule to generate the same output CMake has always
      used the first rule.  However, since commit 2268c41a (Optimize custom
      command full-path dependency lookup, 2013-08-06) we update the map from
      output to cmSourceFile for every rule generating an output, effectively
      keeping the last command instead of the first.
      
      Fix this regression by checking for each map update if the output
      already has an entry.  If so, keep only the original entry.  The VS 8
      generator triggers this with a special case for generate.stamp rules
      that differ between ZERO_CHECK and normal targets, so do not warn for
      now.  Leave a TODO comment for warning in the future.
      dccd4949
    • Kitware Robot's avatar
      CMake Nightly Date Stamp · 6a3958b3
      Kitware Robot authored
      6a3958b3
  5. Sep 29, 2013
  6. Sep 28, 2013
  7. Sep 27, 2013
  8. Sep 26, 2013
  9. Sep 25, 2013
  10. Sep 24, 2013
  11. Sep 23, 2013
  12. Sep 22, 2013
  13. Sep 21, 2013
  14. Sep 20, 2013
  15. Sep 19, 2013
    • Brad King's avatar
      FindHDF5: Fix regression in per-configuration library selection · 0f05961f
      Brad King authored
      When FindHDF5 was first added in commit e6734068 (Add HDF5 find
      module..., 2009-08-24) it contained a workaround for a bug in
      SelectLibraryConfigurations that did not transform lists correctly.
      That bug was fixed by commit 5797512c (SelectLibraryConfiguration:
      generate correct output when input vars are lists, 2012-07-28).  Then
      refactoring in commit 04d4dc33 (SelectLibraryConfigurations: Use
      -NOTFOUND instead of copying the vars, 2013-07-08) changed undocumented
      behavior on which the original workaround relied.  The result puts
      entries like HDF5_hdf5_LIBRARY_DEBUG-NOTFOUND in HDF5_LIBRARIES.
      
      Fix this by dropping the original workaround since the underlying issue
      has been fixed anyway.  Use the HDF5_${LIB}_LIBRARY selected by the call
      to select_library_configurations directly.
      0f05961f
    • Kitware Robot's avatar
      CMake Nightly Date Stamp · 5e2b4994
      Kitware Robot authored
      5e2b4994
  16. Sep 18, 2013
  17. Sep 17, 2013
  18. Sep 16, 2013
Loading