1
0
forked from 0ad/0ad

Fixed premake quote bug that was causing it to generate incorrect vcproj XML files.

This was SVN commit r2818.
This commit is contained in:
Matei 2005-09-30 06:23:03 +00:00
parent 2790981eae
commit cfb0bb597c
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -289,7 +289,7 @@ static void vcFiles(FILE* file, const char* path, int stage)
fprintf(file, "%s <FileConfiguration Name=\"%s|Win32\">\n", indent, config->name);
fprintf(file, "%s <Tool Name=\"VCCustomBuildTool\" "
"Description=\"Assembling $(InputPath)\" "
"CommandLine=\"%s -f win32 -o \"$(IntDir)\\$(InputName).asm.obj\" \"$(InputPath)\"\" "
"CommandLine=\"%s -f win32 -o &quot;$(IntDir)\\$(InputName).asm.obj&quot; &quot;$(InputPath)&quot;\" "
"Outputs=\"$(IntDir)\\$(InputName).asm.obj\" />", indent, nasmPath);
fprintf(file, "%s </FileConfiguration>", indent);
}