This repository was archived by the owner on Aug 11, 2023. It is now read-only.

Description
Forced include method doesn't work properly under VS2015.
The line:
set(forceIncludeFlags "/FI ${includedFile} /TP")
Gets split by spaces and the "includedFile" becomes part of the "AdditionalOptions" and a blank "ForcedIncludeFiles" tag is created.
If the line is changed to:
set(forceIncludeFlags "/FI${includedFile} /TP")
The ForcedInclude tag is properly populated with "includedFile". Note that I haven't tested the solution for paths with spaces or multiple files.