Skip to content

Commit

Permalink
Fixed x64 library imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Mode8fx committed Oct 3, 2021
1 parent c43c37f commit 7081b97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SuDokuLVS2019/SuDokuLVS2019.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
<IncludePath>$(ProjectDir)\SDL2\SDL2-2.0.16\include;$(ProjectDir)\SDL2\SDL2_image-2.0.5\include;$(ProjectDir)\SDL2\SDL2_ttf-2.0.15\include;$(ProjectDir)\SDL2\SDL2_mixer-2.0.4\include;$(IncludePath)</IncludePath>
<LibraryPath>$(ProjectDir)\SDL2\SDL2-2.0.16\lib\x86;$(ProjectDir)\SDL2\SDL2_image-2.0.5\lib\x86;$(ProjectDir)\SDL2\SDL2_ttf-2.0.15\lib\x86;$(ProjectDir)\SDL2\SDL2_mixer-2.0.4\lib\x86;$(LibraryPath)</LibraryPath>
<LibraryPath>$(ProjectDir)\SDL2\SDL2-2.0.16\lib\x64;$(ProjectDir)\SDL2\SDL2_image-2.0.5\lib\x64;$(ProjectDir)\SDL2\SDL2_ttf-2.0.15\lib\x64;$(ProjectDir)\SDL2\SDL2_mixer-2.0.4\lib\x64;$(LibraryPath)</LibraryPath>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
Expand Down Expand Up @@ -90,7 +90,7 @@
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalLibraryDirectories>$(ProjectDir)\SDL2\SDL2-2.0.16\lib\x86;$(ProjectDir)\SDL2\SDL2_image-2.0.5\lib\x86;$(ProjectDir)\SDL2\SDL2_ttf-2.0.15\lib\x86;$(ProjectDir)\SDL2\SDL2_mixer-2.0.4\lib\x86;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<AdditionalLibraryDirectories>$(ProjectDir)\SDL2\SDL2-2.0.16\lib\x64;$(ProjectDir)\SDL2\SDL2_image-2.0.5\lib\x64;$(ProjectDir)\SDL2\SDL2_ttf-2.0.15\lib\x64;$(ProjectDir)\SDL2\SDL2_mixer-2.0.4\lib\x64;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<AdditionalDependencies>SDL2.lib;SDL2main.lib;SDL2_ttf.lib;SDL2_image.lib;SDL2_mixer.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
Expand Down

0 comments on commit 7081b97

Please sign in to comment.