summaryrefslogtreecommitdiffstats
path: root/Tests/MSManifest
Commit message (Collapse)AuthorAgeFilesLines
* Clang: embed windows manifests with GNU interfaceThomas Bernard2021-09-162-1/+5
| | | | Solves: #22611
* Windows: Merge user-provided manifests into compiled resourceKenney Phillis2020-04-218-4/+71
| | | | | | Previously we merged user-provided manifests only into the manifest file given to the linker. Merge them into the manifest file that is compiled as a resource too.
* Revise C++ coding style using clang-formatKitware Robot2016-05-161-1/+4
| | | | | | | | | | | | | Run the `Utilities/Scripts/clang-format.bash` script to update all our C++ code to a new style defined by `.clang-format`. Use `clang-format` version 3.8. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit.
* MSVC: Fix linking with /MANIFEST:NO optionBrad King2015-11-181-0/+2
| | | | | | Refactoring in commit v3.4.0-rc1~74^2~1 (MSVC: Rewrite manifest file handling with Makefile and Ninja, 2015-09-15) broke handling of this option. Fix it and add a test case.
* Add support for *.manifest source files with MSVC toolsBrad King2015-09-175-0/+25
Classify .manifest sources separately, add dependencies on them, and pass them to the MS manifest tool to merge with linker-generated manifest files. Inspired-by: Gilles Khouzam <gillesk@microsoft.com>