| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| |
| |
| |
| |
| | |
1d829c86 Use quotes for non-system includes
26ee9e42 CPack: drop CPack prefix for includes
5afac50f cmConfigure: Ensure separate include block in headers
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !691
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Automate with:
git grep -l '#include <cm_' -- Source \
| xargs sed -i 's/#include <\(cm_.*\)>/#include "\1"/g'
git grep -l '#include <cmsys/' -- Source \
| xargs sed -i 's/#include <\(cmsys\/.*\)>/#include "\1"/g'
git grep -l '#include <cm[A-Z]' -- Source \
| xargs sed -i 's/#include <\(cm[A-Z].*\)>/#include "\1"/g'
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Automate with:
git grep -l '#include <CPack/' -- Source \
| xargs sed -i 's/#include <CPack\/\(.*\)>/#include "\1"/g'
git grep -l '#include "CPack/' -- Source \
| xargs sed -i 's/#include "CPack\/\(.*\)"/#include "\1"/g'
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Make sure that `#include <cmConfigure.h>` is followed by an empty line
in header files. This is necessary to make sure that changing <> to ""
does not affect the include ordering of clang-format.
Automate with:
git grep -l '#include <cmConfigure.h>' | grep -v '.cxx$' \
| xargs sed -i '/#include <cmConfigure.h>/ { N; N; s/\n\{1,2\}/\n\n/ }'
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
a2e91af9 cmGeneratorTarget: Drop unused GetIDLSources method
a77158b2 VS: Refactor loop over classified sources
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !689
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
Loop over all sources at once instead of looking up and looping
over each kind of source separately.
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
8c346bbc Xcode: Compute a concrete object file arch dir if possible
5f4e26df Xcode: Refactor object directory name computation
5b29fd6d Xcode: Refactor internal architecture list construction
b1eb493c cmGlobalGenerator: Abort generation earlier on export() error
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !688
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Factor out a helper function to compute the object directory name
architecture component.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Factor population of the `Architectures` member out into a helper to
avoid duplication.
|
| | | | |
|
| |_|/
|/| | |
|
|\ \ \
| | |/
| |/|
| | |
| | |
| | |
| | |
| | |
| | | |
f4af14ad VS: Simplify logic collecting object library files as sources
10772c51 VS: Simplify use of object libraries in WINDOWS_EXPORT_ALL_SYMBOLS
22829a13 cmMakefile: Create an explicit "Object Libraries" source group
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !686
|
| | |
| | |
| | |
| | |
| | |
| | | |
Object library files are already included by `GetExternalObjects`
and `GetConfigCommonSourceFiles` so we don't need to call
`UseObjectLibraries` to get them.
|
| | |
| | |
| | |
| | |
| | | |
Object library files are already included by `GetExternalObjects`
so we don't need to call `UseObjectLibraries` to get them.
|
| |/
| |
| |
| |
| | |
The generators should not need special logic to place object library
object files in this group.
|
|/ |
|
|\
| |
| |
| |
| |
| |
| |
| | |
60307c50 cmGeneratorTarget: Replace source classifier implementation
a9784d0e cmGeneratorTarget: Remove unnecessary condition
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !677
|
| |
| |
| |
| |
| | |
Compute and memoize the list of sources with their kinds for each
configuration just once.
|
| |
| |
| |
| | |
Remove a condition where the "then" and "else" cases do the same thing.
|
| | |
|
| | |
|
|/ |
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| | |
227de0b9 include_external_msproject: Honor MAP_IMPORTED_CONFIG_<CONFIG>
4cd815f0 VS: Pass whole target to WriteProjectConfigurations
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !669
|
| |
| |
| |
| |
| | |
This allows projects added via `include_external_msproject` to compile
the preferred configuration despite different naming conventions.
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | | |
8243fe7c CodeLite: Distribute source files into folders (virtual directories)
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !653
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
c216e803 bindexplib: Run clang-format on header file
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !670
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | |
| | | |
| | | |
| | | |
| | | |
| | | | |
01826231 Tests: Add case for GENERATOR_IS_MULTI_CONFIG
38fd5866 Add GENERATOR_IS_MULTI_CONFIG global property
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !657
|
| | | |
| | | |
| | | |
| | | | |
Fixes: #16768
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
48fa2914 bindexplib: add ARM support
97c605fd bindexplib: remove unused code
7a8860af bindexplib: clang-format
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !604
|
| | | | |
| | | | |
| | | | |
| | | | | |
Fixes: #16728
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Remove code not used since commit v3.7.0-rc1~395^2 (bindexplib: Export
symbols from objects even with explicit markup, 2016-06-30).
|
| | | | | |
|
| |_|_|/
|/| | | |
|
| |/ /
|/| | |
|
| | | |
|
| | | |
|
| |/
|/| |
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
d1dac1ac Xcode: Execute RunCMake.Framework also for Xcode generator
d02709d7 Genex: Add `TARGET_BUNDLE_[CONTENT_]_DIR` generator expressions
013ffe76 cmGeneratorTarget: Call GetFrameworkDirectory in GetFullNameInternal
32e9d0ca cmGeneratorTarget: Use enum to describe bundle directory query level
Acked-by: Kitware Robot <kwrobot@kitware.com>
Reviewed-by: Craig Scott <craig.scott@crascit.com>
Merge-request: !635
|
| | |
| | |
| | |
| | | |
Closes #16733
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
2c9f3578 VS: Decide project type by linker lang as fallback
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !643
|