Changeset 6f73e0c in opengl-game for NewOpenGLGame.vcxproj


Ignore:
Timestamp:
Feb 27, 2018, 2:16:05 AM (7 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
d12d003
Parents:
1099b95
Message:

In the Visual Studio project, make the include and lib paths relative.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • NewOpenGLGame.vcxproj

    r1099b95 r6f73e0c  
    7171  <PropertyGroup Label="UserMacros" />
    7272  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
    73     <IncludePath>C:\Users\dportnoy\Desktop\opengl-game\include;$(IncludePath)</IncludePath>
    74     <LibraryPath>C:\Users\dportnoy\Desktop\opengl-game\lib;$(LibraryPath)</LibraryPath>
     73    <IncludePath>include;$(IncludePath)</IncludePath>
     74    <LibraryPath>lib;$(LibraryPath)</LibraryPath>
    7575  </PropertyGroup>
    7676  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
    77     <IncludePath>C:\Users\dportnoy\Desktop\opengl-game\include;$(IncludePath)</IncludePath>
    78     <LibraryPath>C:\Users\dportnoy\Desktop\opengl-game\lib;$(LibraryPath)</LibraryPath>
     77    <IncludePath>include;$(IncludePath)</IncludePath>
     78    <LibraryPath>lib;$(LibraryPath)</LibraryPath>
    7979  </PropertyGroup>
    8080  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
Note: See TracChangeset for help on using the changeset viewer.