From 7172e71b4a3432ce166585abb0ca265b44392d7b Mon Sep 17 00:00:00 2001 From: hogliux Date: Mon, 22 May 2017 12:29:30 +0100 Subject: [PATCH] Projucer: Fixed duplicate backslash in Visual Studio output directory setting --- .../Projucer/Source/Project Saving/jucer_ProjectExport_MSVC.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/Projucer/Source/Project Saving/jucer_ProjectExport_MSVC.h b/extras/Projucer/Source/Project Saving/jucer_ProjectExport_MSVC.h index 4f56c0a749..f422a8f073 100644 --- a/extras/Projucer/Source/Project Saving/jucer_ProjectExport_MSVC.h +++ b/extras/Projucer/Source/Project Saving/jucer_ProjectExport_MSVC.h @@ -216,7 +216,7 @@ public: { const String binaryPath (config.getTargetBinaryRelativePathString().trim()); if (binaryPath.isEmpty()) - return "$(SolutionDir)\\$(Platform)\\$(Configuration)"; + return "$(SolutionDir)$(Platform)\\$(Configuration)"; RelativePath binaryRelPath (binaryPath, RelativePath::projectFolder);