diff options
author | KWSys Robot <kwrobot@kitware.com> | 2013-05-31 20:34:02 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-06-03 14:23:16 (GMT) |
commit | d66f6f36baca6d314f1f17e11d90d52b5c9d7ec2 (patch) | |
tree | ffc8003ad90d02fcac170f922eccd4adbe55abae /CMakeLists.txt | |
parent | 927012979e54a69d9d49f188ce73f7b4ca2fb073 (diff) | |
download | CMake-d66f6f36baca6d314f1f17e11d90d52b5c9d7ec2.zip CMake-d66f6f36baca6d314f1f17e11d90d52b5c9d7ec2.tar.gz CMake-d66f6f36baca6d314f1f17e11d90d52b5c9d7ec2.tar.bz2 |
KWSys 2013-05-31 (dccf7725)
Extract upstream KWSys using the following shell commands.
$ git archive --prefix=upstream-kwsys/ dccf7725 | tar x
$ git shortlog --no-merges --abbrev=8 --format='%h %s' 725e541e..dccf7725
Brad King (2):
e3370418 SystemTools: Use COMPILE_DEFINITIONS to pass platform tests
dccf7725 SystemTools: Touch with better than 1s resolution if possible
Change-Id: Icdbcdf405e27b2d5dd30857c7c8679ed5096f252
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 124b8ac..6f0281d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -569,8 +569,17 @@ IF(KWSYS_USE_SystemTools) "Checking whether CXX compiler has unsetenv" DIRECT) KWSYS_PLATFORM_CXX_TEST(KWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H "Checking whether CXX compiler has environ in stdlib.h" DIRECT) - SET_SOURCE_FILES_PROPERTIES(SystemTools.cxx PROPERTIES - COMPILE_FLAGS "-DKWSYS_CXX_HAS_SETENV=${KWSYS_CXX_HAS_SETENV} -DKWSYS_CXX_HAS_UNSETENV=${KWSYS_CXX_HAS_UNSETENV} -DKWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H=${KWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H}") + KWSYS_PLATFORM_CXX_TEST(KWSYS_CXX_HAS_UTIMES + "Checking whether CXX compiler has utimes" DIRECT) + KWSYS_PLATFORM_CXX_TEST(KWSYS_CXX_HAS_UTIMENSAT + "Checking whether CXX compiler has utimensat" DIRECT) + SET_PROPERTY(SOURCE SystemTools.cxx APPEND PROPERTY COMPILE_DEFINITIONS + KWSYS_CXX_HAS_SETENV=${KWSYS_CXX_HAS_SETENV} + KWSYS_CXX_HAS_UNSETENV=${KWSYS_CXX_HAS_UNSETENV} + KWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H=${KWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H} + KWSYS_CXX_HAS_UTIMES=${KWSYS_CXX_HAS_UTIMES} + KWSYS_CXX_HAS_UTIMENSAT=${KWSYS_CXX_HAS_UTIMENSAT} + ) ENDIF() IF(KWSYS_USE_SystemInformation) |