- Nov 14, 2016
-
-
Dāvis Mosāns authored
This allows to decode text data we receive from external process which uses external encoding to our internal encoding.
-
-
de7083f3 Ninja: Document why ComputeLinkCmd is structured the way it is.
-
Robert Maynard authored
-
a57e7630 Help: Add notes for topic 'swig_add_library' 013193d0 SwigTest: Update for swig_add_library and add lua example ec1d585c UseSWIG: Do not set PREFIX property for SHARED and STATIC lua libraries 4c5b3c1c UseSWIG: Do not set NO_SONAME property for SHARED and STATIC libraries d0a9d8bb UseSWIG: Add swig_add_library macro.
-
Kitware Robot authored
-
- Nov 13, 2016
-
-
Kitware Robot authored
-
- Nov 12, 2016
-
-
Kitware Robot authored
-
- Nov 11, 2016
-
-
Brad King authored
-
883bd34a VS: Treat libraries ending in `.targets` as msbuild imports
-
3cfad71c Add Fuchsia platform module
-
3a523eec ctest_memcheck: Add DEFECT_COUNT option to capture defect count
-
2be9d85a ExternalProject: Allow passing config flags to git clone
-
be732739 Features: Fix standards and features for Intel 15 on Windows
-
Brad King authored
-
Daniele E. Domenichelli authored
-
Daniele E. Domenichelli authored
-
Daniele E. Domenichelli authored
-
Daniele E. Domenichelli authored
swig_add_module does not allow to set the type for the library and instead always create the library as MODULE. This patch adds the new swig_add_library command with this signature: SWIG_ADD_LIBRARY(<name> [TYPE <SHARED|MODULE|STATIC>] LANGUAGE <language> SOURCES <file>... ) The swig_add_module is deprecated in favour of swig_add_library. Closes: #16415
-
Kitware Robot authored
-
- Nov 10, 2016
-
-
Brad King authored
The `__cplusplus` macro is not defined to the language level reliably. When simulating MSVC it is always set to `1`. When simulating GCC it is set to the lower value of the current language level and the maximum level supported by the simulated version of GCC (from observation). For MSVC we already used a combination of `__INTEL_CXX11_MODE__` and `__cpp_aggregate_nsdmi` to detect C++14 mode. Extend this for general use by removing the condition on `_MSC_VER`.
-
Brad King authored
It works on some pre-15.0.2 versions but not others.
-
Brad King authored
The Intel 15 compiler for Windows does not support the same set of standards and features as the same version for other platforms.
-
Brad King authored
-
cd8a57ae Add option to build CMake against a system librhash 71180fc8 FindLibRHash: Add module to find the librhash package 3216e94c Remove unused cm_sha2 infrastructure 5420278d Port hash computation to cmCryptoHash 9a596b33 cmCryptoHash: Re-implement in terms of librhash 47f91a61 cmCryptoHash: Avoid using subclasses at client sites d0ff3e70 librhash: Port to KWIML for ABI and integer type information 465a85fb librhash: Avoid signed left-shift overflow fc2cb74f librhash: Implement bswap_32 as a function even in strict C90 mode 0bd333bc librhash: Implement bswap_64 even in strict C90 mode 7189d62c librhash: Use __builtin_bswap{32,64} on Clang af7ebf8a librhash: Install COPYING file with CMake documentation bb01f20e librhash: Disable warnings to avoid changing 3rd party code 31bb727f librhash: Build the library within CMake 53048afa librhash: Remove source fragments not needed for CMake 5cb1b345 Merge branch 'upstream-librhash' into import-librhash ...
-
e4232b82 QtAutogen: Do not re-generate AUTORCC outputs on every build
-
Brad King authored
Create a CMAKE_USE_SYSTEM_LIBRHASH option.
-
Brad King authored
Add it to a private source directory that is not installed so that we can use it for building CMake itself. This will allow it to mature before being distributed publicly.
-
Brad King authored
All clients of `cm_sha2` have been ported to `cmCryptoHash`, which now uses librhash internally.
-
Brad King authored
Avoid using KWSys MD5 or `cm_sha2` and use the `cmCryptoHash` abstraction instead.
-
Brad King authored
Offer direct construction with an enumeration of supported algorithms. Also expose the Initialize/Append/Finalize steps publicly and add a FinalizeHex method.
-
Brad King authored
Use only the main `cmCryptoHash` interface.
-
Brad King authored
-
Brad King authored
Fix `rhash_md5_final` to use unsigned integers for left shifting to avoid the possibility of undefined overflow behavior.
-
Brad King authored
We cannot fall back to the macro implementation because some call sites may call it with an argument like `*ptr++` that has side effects.
-
Brad King authored
-
Brad King authored
-