- Jan 27, 2017
-
-
Daniele E. Domenichelli authored
-
- Jan 26, 2017
-
-
Daniele E. Domenichelli authored
These new global properties were added: * FeatureSummary_PKG_TYPES: Package types accepted by FeatureSummary (default REQUIRED RECOMMENDED OPTIONAL RUNTIME). * FeatureSummary_REQUIRED_PKG_TYPES: Package types that will cause FeatureSummary to abort when called with FATAL_ON_MISSING_REQUIRED_PACKAGES and a package in these categories is missing (default REQUIRED). * FeatureSummary_DEFAULT_PKG_TYPE: Default package type assigned when not explicitly assigned by the user (default OPTIONAL). This allows to add and remove new package types that can be printed selectively using the "WHAT" argument.
-
Daniele E. Domenichelli authored
-
Daniele E. Domenichelli authored
This option suppresses the output when the list of packages that belong to the selected category is empty.
-
Daniele E. Domenichelli authored
-
Daniele E. Domenichelli authored
The OPTIONAL type is used anyway as default when the type is not set Since RUNTIME < OPTIONAL, forcing it here forces the user to set "RUNTIME" at the first SET_PACKAGE_PROPERTIES, otherwise it is impossible to set it later. Without this it is impossible, for example, to add package information (URL and DESCRIPTION) in the FindPackage file, but allow the package to be RUNTIME.
-
Daniele E. Domenichelli authored
-
Daniele E. Domenichelli authored
* Remove space before commas * Do not add an empty line before the first type of packages Also fix a typo in unit test.
-
- Jan 25, 2017
-
-
Kitware Robot authored
-
- Jan 24, 2017
-
-
114ac7d0 Help: Fix typo in CMAKE_DL_LIBS docs
-
10c9c73d Xcode: Control emission of EFFECTIVE_PLATFORM_NAME
-
8f1bce12 cmake-gui: trim spaces from user-created variable names
-
1c2ac0b8 Qt4: Only change timestamp on generated .pro files if content changes
-
-
Kitware Robot authored
-
- Jan 23, 2017
-
-
Kitware Robot authored
-
- Jan 22, 2017
-
-
Domen Vrankar authored
-
Domen Vrankar authored
pax is part of POSIX while tar requires GNU extensions that are not part of some UNIX distros
-
Kitware Robot authored
-
- Jan 21, 2017
-
-
Kitware Robot authored
-
- Jan 20, 2017
-
-
Brad King authored
The NDK's `build/core/definitions.mk` file adds compiler flags: -isystem $$(call host-path,$$(SYSROOT_INC)/usr/include) This passes the system include directory explicitly even though it is implied by `--sysroot=`. The explicit flag places the directory earlier in the include path than the sysroot-default one would be. Teach CMake to add this include directory at the end of the standard include path for Android. Otherwise the toolchain's `include-fixed/` directory may replace system headers with "fixed" copies that are not from the same API version. Closes: #16536
-
Brad King authored
The NDK's own build files: <ndk>/build/tools/build-cxx-stl.sh <ndk>/build/cmake/android.toolchain.cmake for the `c++_static` and `c++_shared` build types add the `<ndk>/sources/android/support/include` include directory between the two `<ndk>/sources/cxx-stl/llvm-libc++*` directories. Re-order our own include directory generation to match. Issue: #16536
-
When building with multiple SDKs within one project Xcode requires the usage of ${EFFECTIVE_PLATFORM_NAME} to put temporary and build outout into separate directories. For example an iOS device and simulator build use two different SDKs (iphoneos and iphonesimulator). In the past cmake tries to detect embedded toolchains that could possibly use simulators and emitted EFFECTIVE_PLATFORM_NAME (EPN) at the proper locations. In #16253 Mark noticed that if he uses macosx and iphoneos in combination the necessary EPN is not emitted. This is because CMake by default assumes macosx SDK which does not trigger EPN emission. The fist naive approach - enabling EPN unconditionally revealed that then the EPN leaks into generator expressions like $<TARGET_FILE:xxx> which might be a regression and thus is unacceptable. The next approach was to add an CMake property to enable EPN emission unconditionally. This solved the reported problem. But the EPN leakage also happened for the embedded toolchains already without anyone noticing. So the control property was turned into a tri-state one: * No definition: EPN is activated for embedded toolchains like before * ON: EPN is always emitted * OFF: EPN is never emitted That approach gives the user the chance to disable EPN for embedded toolchains and restores generator expression functionality for those. Closes: #16253
-
Fixes: #15955
-
In qt4_create_translation() use file(GENERATE ...) instead of file(WRITE ...). This also removes a possible CMP0058 warning because file(GENERATE) tells the Ninja generator about the files it provides. Fixes: #16518
-
adc04afe FindLua: Add dl library to Lua static library linking
-
0ed885f7 ExternalProject: Restore case-insensitive download hash check
-
7f0a21a5 cmSystemTools: use the actual case for root detection
-
3fc4a2b7 QtIFW: Added new options to QtIFW cpack generator for modifying wizard style
-
d9f836e9 Add a getter for manually added target dependencies
-
If a Lua library is compiled from source as `liblua.a` its link dependency on `dl` must be satisfied explicitly.
-
-
Teach the CDASH_UPLOAD signature of ctest_submit() to more thoroughly respect the QUIET option.
-
Teach the CDASH_UPLOAD signature of ctest_submit() to honor the RETRY_COUNT and RETRY_DELAY options. Also teach HttpRequest() to honor the default 120 second timeout for curl connections.
-
Kitware Robot authored
-
- Jan 19, 2017
-
-
Kitware Robot authored
-