| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| | |
a0d620de ExternalProject: Fix log when the first arg of commands is "COMMAND" (#15567)
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | | |
b3795df2 FortranCInterface: Do not use cmake_policy(VERSION)
a4596f20 CheckTypeSize: Do not use cmake_policy(VERSION)
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Do not force a specific policy version in the module because it prevents
projects from setting newer policies to NEW. In particular, projects
may want to set CMP0056 to NEW to affect any try_compile calls in this
module.
Use of this was added in commit v2.8.2~714 (FortranCInterface: Use CMake
2.8.0 behavior, 2009-11-17) in order to set CMP0007 to NEW. Simply set
this policy explicitly instead.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Do not force a specific policy version in the module because it prevents
projects from setting newer policies to NEW. In particular, projects
may want to set CMP0056 to NEW to affect any try_compile calls in this
module.
Use of this was added in commit v2.8.2~539 (New CheckTypeSize for OS X
Universal Binaries, 2009-12-17) and updated in commit v3.1.0-rc1~511^2~1
(Do not change minimum required version in modules, 2014-05-07). The
history does not clearly explain why a specific policy version was
introduced. If specific policies need to be NEW then we can add
explicit settings for them.
|
|\ \ \
| |/ /
| | /
| |/
|/| |
6784f0a6 CheckTypeSize: Avoid if() auto-dereferene in quoted arguments (#15571)
|
| |
| |
| |
| |
| | |
Exposed by a CMP0054 warning. Set CMP0054 to NEW since no code in this
module depends on the old behavior.
|
|\ \
| | |
| | |
| | |
| | |
| | | |
342d15cb Update packaging of CMake for QtIFW 2.0
9a0ba4d2 CPackIFW: Add QtIFW 2.0 support
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Add variables:
- CPACK_IFW_FRAMEWORK_VERSION
- CPACK_IFW_PACKAGE_ALLOW_NON_ASCII_CHARACTERS
- CPACK_IFW_PACKAGE_ALLOW_SPACE_IN_PATH
- CPACK_IFW_PACKAGE_CONTROL_SCRIPT
- CPACK_IFW_PACKAGE_MAINTENANCE_TOOL_INI_FILE
- CPACK_IFW_PACKAGE_MAINTENANCE_TOOL_NAME
- CPACK_IFW_PACKAGE_START_MENU_DIRECTORY
- CPACK_IFW_VERBOSE
|
| |/
|/| |
|
|\ \
| |/
|/|
| |
| | |
12b85b17 FindSquish: Avoid bash-specific behavior in test script (#15568)
|
| |
| |
| |
| |
| |
| |
| | |
Fix Squish4RunTestCase.sh to be POSIX compliant by exiting with 255
explicitly instead of depending on bash to translate -1 to 255. This
script is used by the SQUISH_V3_ADD_TEST and SQUISH_V4_ADD_TEST macros
provided by FindSquish.
|
|\ \
| | |
| | |
| | |
| | |
| | | |
56858178 FindHDF5: Add version support
4bd122ad FindHDF5: Check for a few H5pubconf*.h name variants
|
| | |
| | |
| | |
| | |
| | | |
Detect the HDF5 version and set HDF5_VERSION just as we
detect HDF5_IS_PARALLEL from the header already.
|
| |/
| |
| |
| |
| | |
Some distros package H5pubconf.h as "H5pubconf-32.h" or "H5pubconf-64.h"
depending on the architecture. Look for all of these names.
|
|/
|
|
|
|
| |
The openjdk-8 (8u45-b14-2) package on Debian unstable has extra
text after the version number components. Match this and add it
to the reported version string.
|
|\
| |
| |
| |
| |
| | |
1237d5fa Help: Add notes for topic 'cpack-deb-component-dependencies'
e3f522f6 CPack/DEB per component dependencies
|
| |
| |
| |
| | |
Dependencies may now be set per component
|
|\ \
| | |
| | |
| | |
| | | |
7c103be8 CPack: Enable DEB and RPM tests more reliably
|
| |/
| |
| |
| |
| |
| |
| | |
CPack DEB and RPM generators were not used for some tests because
CPACK_BINARY_DEB and CPACK_BINARY_RPM variable were not set. Fix this,
simplify generator selection in CTEST_RUN_CPackComponentsForAll, and fix
bugs that were detected after tests were run.
|
|\ \
| | |
| | |
| | |
| | |
| | | |
1506f9ca find_package: Drop search in recent cmake-gui locations
8d484463 FindFLTK: Drop search in recent cmake-gui locations
|
| | |
| | |
| | |
| | | |
This is not done by any other find modules.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
dcb18836 ExternalProject: Improve error when SOURCE_DIR is missing (#15560)
|
| |/ /
| | |
| | |
| | |
| | | |
Mention the SOURCE_DIR that we checked and found empty or missing
so that the user can see the full path to what we expected to find.
|
|\ \ \
| |_|/
|/| |
| | |
| | |
| | | |
cf8ce7a3 RC: Do not override MinGW Makefiles generator preference
ca658a45 Ninja: Use forward slashes for linking with any GCC on Windows (#15439)
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Update logic added in commit 957c2aac (RC: Simplify selection of
resource compiler based on C/C++ toolchain, 2015-05-07) to avoid
overriding CMAKE_GENERATOR_RC. The MinGW and MSYS Makefiles
generators use it to select a windres next to the compiler even
if it is not in the PATH.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
65e6b115 WCDH: Fix condition when variables named "FILE" or "PREFIX" are defined
|
| | | |
| | | |
| | | |
| | | | |
Reported-by: Kevin Godby <godbyk@gmail.com>
|
|\ \ \ \
| | |/ /
| |/| /
| |_|/
|/| |
| | |
| | |
| | | |
20560e8d Ninja: Do not use newlines in response files with Windows GNU tools (#15439)
b3de0dfe Ninja: Use forward slashes for any GCC on Windows (#15439)
378c2a0e Ninja: Refactor detection of MinGW tools on Windows
957c2aac RC: Simplify selection of resource compiler based on C/C++ toolchain
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Revert the refactoring by commit v2.8.11~105^2~1 (Ninja: use MinGW
generator code in EnableLanguage, 2013-03-09) and move the MinGW-
specific logic back to the "MinGW Makefiles" generator. Instead teach
the platform information modules for GNU and MSVC on Windows to set the
preferred RC compiler just before enabling the RC language. This way
we choose the RC compiler based on the C/C++ toolchain that is actually
enabled.
|
|\ \
| | |
| | |
| | |
| | | |
1a2a73a5 CPack/RPM fix output in debug log
|
| | |
| | |
| | |
| | | |
output RPMBUILDOUT when intended
|
|\ \ \
| |_|/
|/| |
| | |
| | | |
4588a169 CPack/DEB component dependency auto-discovery
|
| |/
| |
| |
| | |
Dependency auto-discovery can now be set per component
|
|\ \
| | |
| | |
| | |
| | | |
f4734270 HP-UX: Add GNU compiler information for ASM language
|
| |/
| |
| |
| | |
Suggested-by: Gerhard Grimm <gerhard.grimm@detec.com>
|
|\ \
| | |
| | |
| | |
| | | |
9b2778d4 InstallRequiredSystemLibraries: Update for VS 2015 (#15552)
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The part of the MS C Runtime library that applications need to
distribute has been renamed from "msvcr*.dll" to "vcruntime*.dll"
starting with VS 2015. See the Visual C++ Team Blog:
Introducing the Universal CRT
http://blogs.msdn.com/b/vcblog/archive/2015/03/03/introducing-the-universal-crt.aspx
|
| |/
|/|
| |
| |
| | |
Tolerate spaces before the open paren and after the test name before the
comma.
|
|\ \
| | |
| | |
| | |
| | | |
1b04561e FindwxWidgets: Search for wx-config-3.0 in addition to wx-config (#15540)
|
| | |
| | |
| | |
| | |
| | | |
The Fedora package installs 'wx-config' as 'wx-config-3.0' so look
for the latter name too.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
2f0afffa CPackDEB component description
|
| |/ /
| | |
| | |
| | |
| | | |
Support for setting different description
for each component.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
32a2f414 Revert "add_custom_command: Diagnose MAIN_DEPENDENCY limitation."
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This reverts commit 242c3966 (add_custom_command: Diagnose
MAIN_DEPENDENCY limitation, 2015-03-09) and the follow up commit
b372a99a (UseSWIG: Do not use MAIN_DEPENDENCY on custom commands,
2015-03-26).
I misdiagnosed the underlying issue that prompted creation of policy CMP0057.
The actual issue surfaces when a single custom command's MAIN_DEPENDENCY
is listed in more than one target; this issue will have to be addressed
independently.
|
|/ / |
|
|\ \
| | |
| | |
| | |
| | | |
ff183986 InstallRequiredSystemLibraries: Fix MBCS MFC detection (#15531)
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Fix the logic added by commit v3.0.0-rc5~9^2
(InstallRequiredSystemLibraries: MBCS MFC is optional on VS 12,
2014-05-06). Do not test content of MSVC${v}_MFC_DIR until after the
variable is set.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The documentation of this variable in the CTest module is outdated
and has been superseded by the ctest(1) manual. In particular, the
latter mentions that it works with the Ninja generator as well as
makefile generators. Remove the documentation from the CTest module
and replace it with a link to the main variable documentation (which
already references the ctest(1) manual).
|
| | |
| | |
| | |
| | | |
Use inline reStructuredText markup and add cross-references.
|