| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
The verification script needs to know the configuration tested.
|
|
|
|
|
|
|
|
|
|
| |
Narrow down the decision if a CFBundle is built to one place.
This is a preparation patch to add another target property
which, if set, will imply BUNDLE. Having only one function
which will have to look at both properties helps to keep code
clean.
Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
|
|
|
|
|
|
| |
Replace duplicated code by call to GetCFBundleDirectory.
Signed-off-by: Gregor Jasny <gjasny@googlemail.com>
|
| |
|
| |
|
|\
| |
| |
| |
| | |
a300d0ff ExternalProject: avoid CMP0054 warnings
|
| |
| |
| |
| | |
Found where ${command} is "make" which is a local variable.
|
|\ \
| | |
| | |
| | |
| | | |
480e6029 ExternalProject: remove extra newlines from log messages
|
| |/
| |
| |
| | |
message() already adds a newline.
|
|\ \
| | |
| | |
| | |
| | | |
f53a3340 Tests: Fix OS X version check to use component-wise test
|
| |/
| |
| |
| |
| |
| |
| | |
Otherwise 10.10 may be considered to be less than 10.4 and the
tests for CPack will not run.
Reported-by: Sean McBride <sean@rogue-research.com>
|
|\ \
| | |
| | |
| | |
| | | |
2e92570b Fix some Clang -Wstring-conversion warnings
|
| |/
| |
| |
| |
| | |
Some false positives, but some flagged faulty asserts
where the ! was inside the string instead of outside.
|
|\ \
| | |
| | |
| | |
| | | |
ba8c6632 curl: Use Windows SSL/TLS native implementation
|
| |/
| |
| |
| |
| | |
On Windows, when CMAKE_USE_OPENSSL is OFF, use the OS implementation.
This will allow the OS-configured CA list to be trusted automatically.
|
|\ \
| | |
| | |
| | |
| | | |
97b65f81 Misc. fixes for the Oracle / Sun compiler.
|
| | |
| | |
| | |
| | |
| | |
| | | |
A few pieces of code have some ambiguous type deduction that seems to
resolve correctly for most compilers but not for the Oracle compiler.
This makes those few instances more explicit.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
a0792c48 FindMPI: Extract -Xlinker options
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Extend the regex that mathces -Wl, linker options to match -Xlinker too.
These are used by Intel MPI and perhaps others.
|
| | | | |
|
| | | | |
|
| |_|/
|/| | |
|
|\ \ \ |
|
| |\ \ \ |
|
| |\ \ \ \ |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
17a846ac FindMPI: search for msmpi's mpiexec as well
|
| | |_|_|_|/
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
d8589e64 ctest: count errors from scripts properly
|
| | |_|_|_|/
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
In the unlikely event that someone has a billion+ scripts (or some
codepath returns negative numbers), we could overflow and make a pile of
errors a non-error. This change also allows us to use flags for the
error in the future rather than just "something went wrong".
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
009c1865 FindQt4: Fix handling of QT_VERSION_MAJOR mismatch
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Fix capitalization of Qt4_FOUND variable when setting it to false in
this case. This caused find_package(Qt4) to appear successful when it
was not. Note that the legacy QT4_FOUND variable is unconditionally
overwritten at the end of the file with the value of Qt4_FOUND.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
111be180 Rename header guards to not start with double underscore
|
| | |_|/ / / /
| |/| | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Use regex to find/replace:
__(cm.*_h)
\1
Then fix QCMake.h by hand.
|
|\ \ \ \ \ \ \
| | |_|_|_|_|/
| |/| | | | |
| | | | | | |
| | | | | | | |
f2f1c95d Help: Extend policy CMP0054 documentation with an example
|
| | |_|_|/ /
| |/| | | | |
|
| |/ / / /
|/| | | | |
|
| | | | | |
|
| |_|/ /
|/| | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
e0104063 FindLATEX: Use FPHSA to report status in standard way
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Otherwise LaTeX was marked as not found in the summary.
Also revise the documentation.
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
ce331bab find_library: Fix repeat call after changing directory content (#15293)
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
We use cmGlobalGenerator::GetDirectoryContent to avoid repeating
directory listings. However, GetDirectoryContent loads content from
disk at most once. This breaks find_library calls that occur when disk
content has changed since preceding find_library calls.
Teach cmGlobalGenerator::GetDirectoryContent to save the directory
modification time when content is loaded and re-load content if it
changes.
Create a RunCMake.find_library test with a case covering this.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
3fb33e01 Merge branch 'backport-doc-find-module-no-summary' into doc-find-module-no-summary
d425c110 Help: Drop FeatureSummary example in cmake-developer.7
8235effe Help: Drop FeatureSummary example in cmake-developer.7
|
| |\ \ \ \ \ \
| | | |_|_|_|/
| | |/| | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
doc-find-module-no-summary
Resolve conflict in Help/manual/cmake-developer.7.rst by taking our
side.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The use of FeatureSummary inside a find module is not a convention
yet used by upstream CMake modules. Drop the example from the
documentation about how to write find modules. If in the future
we add use of FeatureSummary to many of the upstream find modules
then this example can be restored as part of establishing the
convention.
|
| | |_|_|_|/
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The use of FeatureSummary inside a find module is not a convention
yet used by upstream CMake modules. Drop the example from the
documentation about how to write find modules. If in the future
we add use of FeatureSummary to many of the upstream find modules
then this example can be restored as part of establishing the
convention.
|
|/ / / / / |
|
|\ \ \ \ \
| |_|/ / /
|/| | | /
| | |_|/
| |/| | |
|
| | | | |
|
|\ \ \ \
| |/ / / |
|