| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|\
| |
| |
| |
| | |
874fdd91 CTest: Output test-specific env vars in verbose mode (#15446)
|
| |
| |
| |
| |
| |
| | |
Any environment vars that were configured for a test via the
ENVIRONMENT property will now be output when the test is run
with verbose logging enabled.
|
| | |
|
|/ |
|
| |
|
| |
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| |
| | |
ec428faf Genex: Extend cmGeneratorExpressionContext constructor.
082b6a9d Genex: Split cmGeneratorExpressionContext into own file.
9df1f0fc Genex: Split cmGeneratorExpressionNode into own file.
80b9f0cb Genex: Extract an evaluateWithContext method.
642048ce Help: Move docs of $<0:...> and $<1:...> to output section.
|
| |
| |
| |
| | |
Initialize the members in the appropriate place.
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
Make it easier to make modifications to the context before
evaluating with it.
|
|\ \
| | |
| | |
| | |
| | |
| | | |
e433223d Merge branch 'upstream-kwsys' into update-kwsys
9a427f86 KWSys 2015-03-10 (4a698414)
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
94887cb6 cmake: Teach --build to get VCExpress output (#15437)
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
VCExpress does not produce output if its pipes are connected to
an interactive terminal. Add a special case to 'cmake --build'
to capture the output through a pipe and re-print it instead of
sharing output pipes with VCExpress.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
8701a3f4 cmRemoveDuplicates: Partially specialize the API for pointer types.
eec7091d cmRemoveDuplicates: Type-parameterize all uniq-operations
7cbafa8c cmRemoveDuplicates: Store unique iterators instead of values.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
If de-duplicating a container of pointers, there is no need to
store iterators to them, as that is just more 'pointer chasing'.
Store the pointers themselves and use API which compares the pointers
in the specialization.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
There is no need to copy all of the values in the container in
order to determine uniqueness. Iterators can be stored instead
and can be used with standard algorithms with custom comparison
methods.
This also means that we use less space in case the value_type size
is greater than sizeof(iterator). That is common for std::string
which may require up to 32 bytes (libstdc++ 5.0 and MSVC at least).
With libstdc++ 4.9 and older, std::string is 8 bytes, so we likely
don't gain anything here.
Inspired-by: Daniel Pfeifer <daniel@pfeifer-mail.de>
|
|\ \ \ \ \
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
95dd238f cmRemoveDuplicates: Fix iterator -> const_iterator.
4448f175 cmInstalledFile: Move Property implementation out of line.
7916d7ba Include cmAlgorithms where it is used.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Don't require re-building the world when changing cmAlgorithms.h.
|
| | |_|/
| |/| | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
3ff95f3b cmAlgorithms: Add early return in cmRemoveIndices.
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
Avoid derefencing the iterator and segfaulting if the range
is empty.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
18d5a4bc VS: Add more Fortran compiler flags to flag table (#15381)
|
| | |/ /
| |/| |
| | | |
| | | |
| | | |
| | | | |
Due to a difference in how AdditionalOptions are implemented in the
Fortran component of VS and the C/C++ component, flags that are not
listed in the flag table are at risk of being overwritten.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
242c3966 add_custom_command: Diagnose MAIN_DEPENDENCY limitation.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The new policy CMP0057 diagnoses reuse of the same MAIN_DEPENDENCY across
multiple custom commands.
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
c771f9d9 CTest: Fix Jacoco Coverage
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Rename the example jacoco.xml file to be jacoco.xml.in to stop CMake
from apptempting to calculate Jacoco Coverage when running over itself.
Enclose a push of -1 to the coverage vector to only happen if there is a
fin to calculate for. This prevents a crash if the target file doesn't
exist.
|
| |_|_|_|/
|/| | | | |
|
| |_|_|/
|/| | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
232a6883 Help: Add release notes for target-language-genex.
9e168941 File(GENERATE): Process genex evaluation files for each language.
b734fa44 Genex: Allow COMPILE_LANGUAGE when processing include directories.
0b945ea9 Genex: Allow COMPILE_LANGUAGE when processing compile definitions.
5c559f11 Genex: Enable use of COMPILE_LANGUAGE for compile options.
e387ce7d Genex: Add a COMPILE_LANGUAGE generator expression.
4a0128f4 VS6: Compute CMAKE_*_FLAGS and COMPILE_DEFINITIONS* only when needed
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
Issue an error if this is encountered by an IDE generator.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Issue an error if this is encountered by an IDE generator.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Follow-ups will allow the use of the generator expression
for compile definitions and include directories for non-IDE
generators.
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
These placeholders are used only in the .dsp templates for targets
that actually compile sources.
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
a6b09085 Ninja: Improve internal check for generating at the top-level (#15436)
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Simply check for whether the local generator has a parent instead of
depending on a string comparison of directory names.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
024e25e4 Tests: Add more signature tests to RunCMake.configure_file test
3ef776fc configure_file: Do not warn about newline style arguments
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The unknown argument warning added by commit v3.2.0-rc1~452^2
(configure_file: Warn about unknown arguments, 2014-10-31) failed to
account for options handled by the NewLineStyle member instead of
directly in the main loop. Simply whitelist them for now.
|
| |_|_|_|/
|/| | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
099b0cab CodeBlocks: Declare which source file belongs to which targets.
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | | |
This should allow the consuming IDE to determine which target specific
preprocessor definitions and include directories are relevant for a
given source file.
|