- 20 May, 2018 1 commit
-
-
Kitware Robot authored
-
- 19 May, 2018 1 commit
-
-
Kitware Robot authored
-
- 18 May, 2018 3 commits
-
-
8cfc45f6 clang-format: Explicitly require version 3.8 of the tool Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2086
-
Brad King authored
Versions of clang-format newer than 3.8 produce different output. Our source code guide says that version 3.8 exactly must be used. Update the comment in our `.clang-format` config file accordingly. Add a check to our formatting script to verify the version. Also update its tool search to look for the explicitly-named 3.8 variant first.
-
Kitware Robot authored
-
- 17 May, 2018 7 commits
-
-
Brad King authored
-
Brad King authored
-
b6c49713 Makefile: Fix command line limits for static libs Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2078
-
2db49451 file(WRITE): Report errors during write operation Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2076
-
3715d0fb Tests: Add QtAutogen test for a low cmake_minimum_required version Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2077
-
3333e279 Help: Add release note about 'copy_directory' behavior change 24367563 Merge branch 'upstream-KWSys' into update-kwsys 1e0a2e93 KWSys 2018-05-15 (5f757898) Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2080
-
Kitware Robot authored
-
- 16 May, 2018 15 commits
-
-
I have been hitting the Windows command-line limit when cross-compiling static library (POCO) and having more than 8000 characters in the call to "ar". Calculating exact limits here are tricky, since this particular limit will only take into account object file strings, which is correct for response files, but not for the archive rules (link.txt files), since they also contain the call to "ar" and its arguments. Also, there can be other additional arguments if "ar" tool is wrapped into something else, so it is a good idea to leave more space than trying to exactly fit the limit. Since response files use half of the limit as a heuristic, we reproduce it here for consistency.
-
7a33cfc1 regenerate-parsers.bash: Add script to automate parser generation 3d382a49 regenerate-lexers.bash: Add option to check timestamps 5cd9f5c9 regenerate-lexers.bash: Factor file names into variables Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2081
-
This depends on - a suitable flex version in PATH (currently 3.0.4) - a suitable version of 'sed' in PATH (e.g. GNU sed)
-
-
-
We already report an error if the file cannot be opened for writing. Add another check to report an error if a write operation itself fails.
-
c2934b02 FindQt4: New IMPORTS, PLUGINS and MKSPECS handling Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2060
-
c9349cc1 target_link_libraries: Allow use with targets in other directories Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2040
-
71a03361 added CMAKE_DOTNET_TARGET_FRAMEWORK_VERSION variable Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2032
-
b88e1383 cmVisualStudio10TargetGenerator: minor code cleanup Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2063
-
Brad King authored
Issue: #16001
-
Brad King authored
* upstream-KWSys: KWSys 2018-05-15 (5f757898) Fixes: #16001
-
Code extracted from: https://gitlab.kitware.com/utils/kwsys.git at commit 5f757898119974aa30f700d5c38928ee48407320 (master). Upstream Shortlog ----------------- Marian Klymov (1): d06fcab7 SystemTools: Check source directory in CopyADirectory
-
Sebastian Holtermann authored
-
Kitware Robot authored
-
- 15 May, 2018 11 commits
-
-
Previously the command did not allow naming targets on the LHS that were not created in the calling directory. Lift this restriction to enable more flexible use by projects. Fixes: #17943
-
Brad King authored
-
9672d81c Qt4Macros: Don't AUTOMOC or AUTOUIC qt4-generated files 800b2fcf Qt4Macros: Use get_property/set_property Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2066
-
Brad King authored
-
e461a136 Autogen: Register generated dependency files Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2071
-
6e594916 add_custom_{command,target}: Fix crash on empty expanded command Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !2074
-
Brad King authored
Merge-request: !2066
-
Suppress AUTOMOC and AUTOUIC on files generated by Qt4 wrapping macros; particularly, those generated by `qt4_wrap_cpp`, `qt4_wrap_ui`, and `qt4_add_resources`. None of these should need AUTOMOC or AUTOUIC treatment, and CMP0071 makes it important to mark this explicitly.
-
Replace use of old-style {get,set}_source_file_properties with newer {get,set}_property.
-
Michael Stürmer authored
Fixes: #17955
-
Kitware Robot authored
-
- 14 May, 2018 2 commits
-
-
Brad King authored
Merge-request: !2074
-
Brad King authored
Our custom command generation logic assumes that all command lines have at least `argv0`. In `add_custom_{command,target}` we already check that at least a `COMMAND` was given, but using `COMMAND_EXPAND_LISTS` in combination with a generator expression that expands to an empty string may produce an empty command line. In this case simply add an empty string as a command to maintain our internal invariant. Fixes: #17993
-