[Cmake-commits] CMake branch, master, updated. v3.4.1-746-ga53e016
Brad King
brad.king at kitware.com
Mon Dec 21 09:41:12 EST 2015
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, master has been updated
via a53e0168c344111de301ad67498ad89862b58cdf (commit)
via a5dd0c9d427d66f7e361b0aa714a0a41b65ae4f0 (commit)
via 036b6ef7c47ccb19f291d2f36df37aaf885b4ba8 (commit)
via 12293371ee0f3b930afee8d328415968eb8201e6 (commit)
via 3fdbb0a806f67f10ea8428e03a4523d08d2b083c (commit)
via 55b21d072e2df9a35a354fd33e8cf2d0c3bd22be (commit)
via c7d9a249118a7b01ed8fa9cc8c61833e39d251d2 (commit)
from 3768a79c232dc2456b9e9b70da6582b0eb1e78f1 (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 -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a53e0168c344111de301ad67498ad89862b58cdf
commit a53e0168c344111de301ad67498ad89862b58cdf
Merge: 3768a79 a5dd0c9
Author: Brad King <brad.king at kitware.com>
AuthorDate: Mon Dec 21 09:41:09 2015 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Dec 21 09:41:09 2015 -0500
Merge topic 'import-kwiml'
a5dd0c9d Add option to use a system-installed KWIML
036b6ef7 Port CMake from cmIML to KWIML
12293371 Merge branch 'upstream-KWIML' into import-kwiml
3fdbb0a8 KWIML 2015-12-09 (43f9f8d0)
55b21d07 Add script to update KWIML from upstream
c7d9a249 Utilities/KWIML: Drop sources to make room for fresh import
-----------------------------------------------------------------------
Summary of changes:
CMakeLists.txt | 29 +-
CTestCustom.cmake.in | 2 +-
Source/CMakeLists.txt | 1 +
Source/cmAlgorithms.h | 4 +-
Source/cmELF.cxx | 11 +-
Source/cmFileCommand.cxx | 4 +-
Source/cmFindPackageCommand.h | 2 +-
Source/cmLocalGenerator.cxx | 4 +-
Source/cmLocalGenerator.h | 4 +-
Source/cmStandardIncludes.h | 2 +-
Source/cmVersion.h | 2 +-
Source/cm_sha2.c | 13 +-
Source/cm_sha2.h | 10 +-
Utilities/KWIML/.gitattributes | 1 +
Utilities/KWIML/ABI.h.in | 506 ---------
Utilities/KWIML/CMakeLists.txt | 145 +--
Utilities/KWIML/Copyright.txt | 2 +-
Utilities/KWIML/INT.h.in | 861 ----------------
Utilities/KWIML/README.md | 36 +
Utilities/KWIML/README.txt | 29 -
Utilities/KWIML/include/kwiml/abi.h | 562 ++++++++++
Utilities/KWIML/include/kwiml/int.h | 1069 ++++++++++++++++++++
Utilities/KWIML/src/kwiml-config.cmake.in | 1 +
Utilities/KWIML/src/version.h.in | 59 ++
Utilities/KWIML/test/CMakeLists.txt | 48 +-
Utilities/KWIML/test/test.c | 32 +-
Utilities/KWIML/test/test.cxx | 16 +-
Utilities/KWIML/test/test.h | 31 +-
Utilities/KWIML/test/test_ABI_C.c | 22 -
Utilities/KWIML/test/test_ABI_CXX.cxx | 22 -
Utilities/KWIML/test/test_ABI_endian.h.in | 47 -
Utilities/KWIML/test/test_INT_C.c | 22 -
Utilities/KWIML/test/test_INT_CXX.cxx | 22 -
Utilities/KWIML/test/test_abi_C.c | 19 +
Utilities/KWIML/test/test_abi_CXX.cxx | 19 +
Utilities/KWIML/test/test_abi_endian.h | 41 +
Utilities/KWIML/test/test_include_C.c | 20 +-
Utilities/KWIML/test/test_include_CXX.cxx | 20 +-
Utilities/KWIML/test/test_int_C.c | 19 +
Utilities/KWIML/test/test_int_CXX.cxx | 19 +
.../{test_INT_format.h.in => test_int_format.h} | 83 +-
.../{update-kwsys.bash => update-kwiml.bash} | 10 +-
Utilities/cmThirdParty.h.in | 1 +
Utilities/{cm_jsoncpp_writer.h => cm_kwiml.h} | 14 +-
Utilities/cmjsoncpp/CMakeLists.txt | 1 +
bootstrap | 31 +-
46 files changed, 2108 insertions(+), 1810 deletions(-)
create mode 100644 Utilities/KWIML/.gitattributes
delete mode 100644 Utilities/KWIML/ABI.h.in
delete mode 100644 Utilities/KWIML/INT.h.in
create mode 100644 Utilities/KWIML/README.md
delete mode 100644 Utilities/KWIML/README.txt
create mode 100644 Utilities/KWIML/include/kwiml/abi.h
create mode 100644 Utilities/KWIML/include/kwiml/int.h
create mode 100644 Utilities/KWIML/src/kwiml-config.cmake.in
create mode 100644 Utilities/KWIML/src/version.h.in
delete mode 100644 Utilities/KWIML/test/test_ABI_C.c
delete mode 100644 Utilities/KWIML/test/test_ABI_CXX.cxx
delete mode 100644 Utilities/KWIML/test/test_ABI_endian.h.in
delete mode 100644 Utilities/KWIML/test/test_INT_C.c
delete mode 100644 Utilities/KWIML/test/test_INT_CXX.cxx
create mode 100644 Utilities/KWIML/test/test_abi_C.c
create mode 100644 Utilities/KWIML/test/test_abi_CXX.cxx
create mode 100644 Utilities/KWIML/test/test_abi_endian.h
create mode 100644 Utilities/KWIML/test/test_int_C.c
create mode 100644 Utilities/KWIML/test/test_int_CXX.cxx
rename Utilities/KWIML/test/{test_INT_format.h.in => test_int_format.h} (78%)
copy Utilities/Scripts/{update-kwsys.bash => update-kwiml.bash} (51%)
copy Utilities/{cm_jsoncpp_writer.h => cm_kwiml.h} (71%)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list