| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Fix logic error introduced in commit e422f738 (BundleUtilities: Fix
treatment of .dylib inside .framework folders, 2016-02-11).
|
|
|
|
|
|
|
|
|
|
| |
The specific cause is when e.g.
/Library/Frameworks/GStreamer.framework/Versions/1.0/lib/libgio-2.0.0.dylib
is detected by fixup_bundle. set_bundle_key_values() interprets this as
a framework, thus doing a string replace that creates an embedded_item
that is equal to the original path, i.e. it is not embedded.
|
|\
| |
| |
| |
| | |
e739ef7b FindCUDA: Only warn about non-existent dependency files in verbose mode
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | | |
5b04aa31 Xcode: Disable test for system include dirs
2cae5128 Apple: Enable -isystem for GNU Compiler >= 4 (#15953)
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Due to #4662 -isystem support was disabled for all GNU Compilers
on Apple platforms. But the change was probably a just work around
for a broken compiler on Tiger (see 10837#c27206). So we tighten
the condition to only kick in for GCC versions earlier than 4.
That should ensure sane behavior for Xcode 3.2 and later.
|
|\ \ \
| | |/
| |/|
| | |
| | |
| | | |
81ecc726 FindCUDA: Added some additional comments about non-existent dependency files.
4b561b4c FindCUDA: Fix for when a non-existent dependency file is found.
|
| | | |
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Previously if a non-existent dependency file is found we set the file to "" and
then do if(NOT IS_DIRECTORY "${file}"). Later we call get_filename_component
on the empty file which returns basically the current build directory.
Having a dependency on the current build directory is really annoying, because
anything that compiles into that directory will change the file stamp and
cause your files to rebuild every time you call make. :(
|
|\ \
| |/
|/|
| |
| | |
1b9d15c1 ExternalProject: Be compatible with projects setting CMAKE_CFG_INTDIR
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Since commit v3.5.0-rc1~32^2~1 (ExternalProject: Simplify `cmake
--build` configuration passing, 2016-01-19) we use the `$<CONFIG>`
generator expression to generate the `cmake --build . --config <config>`
value for the default BUILD_COMMAND instead of the CMAKE_CFG_INTDIR
placeholder value provided by multi-config generators. However, some
projects have been abusing the old implementation detail by setting
CMAKE_CFG_INTDIR themselves to get a specific configuration. Those
projects should be updated to set their own BUILD_COMMAND to get
non-default behavior. Meanwhile we can be compatible with their
existing releases by detecting when CMAKE_CFG_INTDIR is not a
generator-provided placeholder and using its value instead.
|
|/
|
|
|
|
| |
The dependency flags require recent versions of `iccarm` and `iccavr`.
The multi-rule dependency generated with `--dependencies=m` does not
work well with Ninja, so use `--dependencies=ns` instead.
|
|\
| |
| |
| |
| |
| | |
fa78ee97 FindGit: Improve documentation formatting
facfb52c FindGit: Document Git_FOUND, unset internal var
|
| | |
|
| |
| |
| |
| |
| |
| | |
* Git is called Git, not git.
* FindGit sets Git_FOUND, too.
* Unset internal variable git_names
|
|/
|
|
| |
It is not `CLASS_DIR`.
|
|\
| |
| |
| |
| | |
b94e855d FindBoost: Add support for Boost 1.61
|
| | |
|
|\ \
| | |
| | |
| | |
| | | |
9b08c623 FindPNG: Create an imported PNG::PNG target (#15911)
|
| | |
| | |
| | |
| | |
| | |
| | | |
Imported targets are now the recommended way of dealing with external
library dependencies. Add one for FindPNG and update documentation
accordingly. Also add a test case activated by CMake_TEST_FindPNG.
|
|\ \ \
| |_|/
|/| |
| | |
| | | |
40249bcc FindPkgConfig: set standard variables in the cache
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Fixes a regression introduced when the code was simplified to use the
variable queries.
Fixes #15903.
Reported-by: Bernd Lörwald
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
f9e45ab9 FindXalanC: New module to find the Apache Xalan-C++ library
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
ec00e89e ExternalProject: Fix TEST_BEFORE_INSTALL for multi-config generators
5d739a3c ExternalProject: Simplify `cmake --build` configuration passing
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
In multi-config generators we must tell `ctest` what configuration to
test.
Reported-by: Taylor Braun-Jones <taylor@braun-jones.org>
|
| | |_|/
| |/| |
| | | |
| | | |
| | | |
| | | | |
Check CMAKE_CONFIGURATION_TYPES instead of CMAKE_CFG_INTDIR in order
to recognize multi-config generators. Then use $<CONFIG> to pass
the configuration value.
|
|\ \ \ \
| |_|_|/
|/| | |
| | | |
| | | | |
c8daac35 GetPrerequisites: Define api-ms-win-* files as system libraries (#15691)
|
| |/ /
| | |
| | |
| | | |
Suggested-by: Gilles Khouzam <gillesk@microsoft.com>
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
18c3714f UseJava: Fix create_javah CLASSPATH handling on Windows
|
| |/ /
| | |
| | |
| | | |
Preserve semicolons in the value.
|
|/ / |
|
|\ \
| | |
| | |
| | |
| | | |
8979a107 FindPkgConfig: Fix restoration of PKG_CONFIG_PATH in environment
|
| |/
| |
| |
| |
| |
| | |
The original value is saved in `_pkg_config_path_old`. Fix this typo
left by commit v3.1.0-rc1~763^2 (FindPkgConfig: Extend PKG_CONFIG_PATH
using CMake variables, 2014-03-06).
|
|\ \
| | |
| | |
| | |
| | | |
83d63391 ExternalProject: Add option to set `git clone -o` argument
|
| |/
| |
| |
| |
| |
| |
| |
| | |
Add a `GIT_REMOTE_NAME` option to `ExternalProject_Add` to support
git clone --origin <name>
Default to `origin` if not specified.
|
|\ \
| | |
| | |
| | |
| | | |
6ccc3070 FindCUDA: Support special characters in path (#15919)
|
| |/
| |
| |
| |
| |
| |
| |
| | |
Add `VERBATIM` to all `add_custom_command` calls so that CMake will
escape arguments properly even when special characters such as "()" are
present.
Suggested-by: Nils Gladitz <nilsgladitz@gmail.com>
|
|/
|
|
|
|
|
|
|
|
|
| |
In Modules/Platform/WindowsPaths.cmake our previously recorded
environment variable combinations no longer seem to be correct. For
example, a 64-bit cmake binary may see ProgramW6432 in the environment
and end up not considering the "ProgramFiles(x86)" variable. Instead
check for all possible environment variables in the preferred order and
then remove duplicates.
Reported-by: Shawn Waldon <shawn.waldon@kitware.com>
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| | |
4b24626e FindDCMTK: Simplify documentation.
361c199f FindDCMTK: Add reStructuredText formatting.
d790f4fe FindDCMTK: Keep original copyright notice.
8c8e53d0 FindDCMTK: Minor documentation grammatical issues.
d50cbbb0 FindDCMTK: Obey QUIET option for find_package.
31b4700e FindDCMTK: Improve compatibility with DCMTKConfig.cmake.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
This is a follow-up to 31b4700ed640bee962f9db9ce25fa84261a944d2.
Remove the extra character that was added to ensure the CMake.ModuleNotices
test passes.
|
| |
| |
| |
| | |
Also remove CTK integration reference to avoid confusion.
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This improvement to the FindDCMTK module improves compatibility with recent
DCMTK, which provides a DCMTKConfig.cmake file. See the module comments for a
compatibility matrix.
It also provides DCMTK_INCLUDE_DIRS.
Ported from CommonTK (commontk.org).
|
| |\ |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Most packages install their .pc files into PREFIX/lib/pkgconfig, but
some put them into PREFIX/share/pkgconfig. Either is valid, and
pkg-config itself looks in both for the /usr and /usr/local prefixes.
This fixes an issue where some packages (yajl, for example) are not
found if they are installed into a non-standard prefix and
CMAKE_PREFIX_PATH is used to locate them.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
4d05f195 FindwxWidgets: Drop suppression of -isystem
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This was added by commit v2.8.0~2292 (... Set variable
wxWidgets_INCLUDE_DIRS_NO_SYSTEM on the Mac ..., 2008-04-16) and updated
by commit v2.8.9~183^2 (FindwxWidgets: Do not use -isystem on OpenBSD,
2012-05-14). Since the underlying cause was never investigated fully we
do not know the conditions under which -isystem breaks wxWidgets, but
suppressing -isystem is problematic for users that do not want to see
warnings in wxWidgets headers. Simply drop the special case for now so
we can see whether anyone hits the problem again, at which point it can
be investigated in more detail.
Reported-by: Simon Wells <swel024@gmail.com>
|