aboutsummaryrefslogtreecommitdiff
path: root/devtools/create_project
diff options
context:
space:
mode:
authorJohannes Schickel2016-03-09 18:33:27 +0100
committerJohannes Schickel2016-03-09 22:03:47 +0100
commitd2f3bc39b46073ce3c4b76093919a45b340f9233 (patch)
treef3c8043407947357117d119e8e0f0291aff0dac0 /devtools/create_project
parent4ee3623f5d29155de38cd0bf9426531d7a40b323 (diff)
downloadscummvm-rg350-d2f3bc39b46073ce3c4b76093919a45b340f9233.tar.gz
scummvm-rg350-d2f3bc39b46073ce3c4b76093919a45b340f9233.tar.bz2
scummvm-rg350-d2f3bc39b46073ce3c4b76093919a45b340f9233.zip
DEVTOOLS: Fix path separator in MSBuild's global props output.
Diffstat (limited to 'devtools/create_project')
-rw-r--r--devtools/create_project/msbuild.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/devtools/create_project/msbuild.cpp b/devtools/create_project/msbuild.cpp
index a326bd721a..7a43130b56 100644
--- a/devtools/create_project/msbuild.cpp
+++ b/devtools/create_project/msbuild.cpp
@@ -374,7 +374,7 @@ void MSBuildProvider::outputGlobalPropFile(const BuildSetup &setup, std::ofstrea
"\t\t<LibraryPath>$(" << LIBS_DEFINE << ")\\lib\\" << (bits == 32 ? "x86" : "x64") << ";$(LibraryPath)</LibraryPath>\n"
"\t\t<IncludePath>$(" << LIBS_DEFINE << ")\\include;$(" << LIBS_DEFINE << ")\\include\\SDL;$(IncludePath)</IncludePath>\n"
"\t\t<OutDir>$(Configuration)" << bits << "\\</OutDir>\n"
- "\t\t<IntDir>$(Configuration)" << bits << "/$(ProjectName)\\</IntDir>\n"
+ "\t\t<IntDir>$(Configuration)" << bits << "\\$(ProjectName)\\</IntDir>\n"
"\t</PropertyGroup>\n"
"\t<ItemDefinitionGroup>\n"
"\t\t<ClCompile>\n"