Changeset b1d8ddc in opengl-game for NewOpenGLGame.vcxproj


Ignore:
Timestamp:
May 16, 2018, 3:40:17 AM (7 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
cffca4d
Parents:
93462c6
Message:

Add some VS project settings for 64-bit builds

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NewOpenGLGame.vcxproj

    r93462c6 rb1d8ddc  
    7878    <LibraryPath>lib;$(LibraryPath)</LibraryPath>
    7979  </PropertyGroup>
     80  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
     81    <IncludePath>include;$(IncludePath)</IncludePath>
     82    <LibraryPath>lib;$(LibraryPath)</LibraryPath>
     83  </PropertyGroup>
    8084  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
    8185    <ClCompile>
     
    9498      <Optimization>Disabled</Optimization>
    9599      <SDLCheck>true</SDLCheck>
     100      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    96101    </ClCompile>
     102    <Link>
     103      <AdditionalDependencies>glew32s.lib;glfw3.lib;opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
     104    </Link>
    97105  </ItemDefinitionGroup>
    98106  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     
    118126      <IntrinsicFunctions>true</IntrinsicFunctions>
    119127      <SDLCheck>true</SDLCheck>
     128      <PreprocessorDefinitions>_CRT_SECURE_NO_WARNINGS;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
    120129    </ClCompile>
    121130    <Link>
    122131      <EnableCOMDATFolding>true</EnableCOMDATFolding>
    123132      <OptimizeReferences>true</OptimizeReferences>
     133      <AdditionalDependencies>glew32s.lib;glfw3.lib;opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
    124134    </Link>
    125135  </ItemDefinitionGroup>
Note: See TracChangeset for help on using the changeset viewer.