Skip to content

Commit

Permalink
build: swap position of Debug and Release configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
BinToss committed Dec 13, 2021
1 parent 6bf2ec5 commit 6c5701e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DRP.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<IncludePath>.\discord-rpc\include;$(IncludePath)</IncludePath>
<LibraryPath>.\discord-rpc\lib;$(LibraryPath)</LibraryPath>
<OutDir>..\bin\$(Configuration)\</OutDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<IncludePath>.\discord-rpc\include;$(IncludePath)</IncludePath>
<LibraryPath>.\discord-rpc\lib;$(LibraryPath)</LibraryPath>
<OutDir>..\bin\$(Configuration)\</OutDir>
Expand Down

0 comments on commit 6c5701e

Please sign in to comment.