quotes around the path to allow for paths with spaces when mc.exe is called (#9599)

This commit is contained in:
Justin Dearing 2019-04-29 11:57:18 -04:00 committed by Justin Kotalik
parent 2624e73172
commit 33a4937d38
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@
<ItemGroup Condition="@(MessageFile->Count()) != 0">
<CustomBuild Include="@(MessageFile)">
<FileType>Document</FileType>
<Command>mc %(FullPath) -h $(IntDir) -r $(IntDir)</Command>
<Command>mc "%(FullPath)" -h $(IntDir) -r $(IntDir)</Command>
<Message>Compiling Event Messages ...</Message>
<Outputs>$(IntDir)\%(Filename).rc;$(IntDir)\%(Filename).h;$(IntDir)\MSG0409.bin</Outputs>
</CustomBuild>