Browse Source

Projucer: Fixed duplicate backslash in Visual Studio output directory setting

tags/2021-05-28
hogliux 8 years ago
parent
commit
7172e71b4a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/Project Saving/jucer_ProjectExport_MSVC.h

+ 1
- 1
extras/Projucer/Source/Project Saving/jucer_ProjectExport_MSVC.h View File

@@ -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);


Loading…
Cancel
Save