Bladeren bron

build: reference projects using a property sheet instead of a guid.

legacy
Sam Hocevar 5 jaren geleden
bovenliggende
commit
54335bd5aa
27 gewijzigde bestanden met toevoegingen van 80 en 187 verwijderingen
  1. +3
    -0
      build.config
  2. +10
    -0
      build/msbuild/lol-bullet.props
  3. +10
    -0
      build/msbuild/lol-core.props
  4. +10
    -0
      build/msbuild/lol-lua.props
  5. +2
    -8
      doc/samples/benchsuite.vcxproj
  6. +2
    -8
      doc/samples/btphystest.vcxproj
  7. +2
    -8
      doc/tutorial/01_triangle.vcxproj
  8. +2
    -8
      doc/tutorial/02_cube.vcxproj
  9. +2
    -8
      doc/tutorial/03_noise.vcxproj
  10. +2
    -8
      doc/tutorial/04_texture.vcxproj
  11. +3
    -11
      doc/tutorial/05_easymesh.vcxproj
  12. +2
    -8
      doc/tutorial/06_sprite.vcxproj
  13. +2
    -8
      doc/tutorial/07_input.vcxproj
  14. +2
    -8
      doc/tutorial/08_fbo.vcxproj
  15. +2
    -8
      doc/tutorial/09_sound.vcxproj
  16. +2
    -8
      doc/tutorial/11_fractal.vcxproj
  17. +2
    -8
      doc/tutorial/12_voronoi.vcxproj
  18. +2
    -8
      doc/tutorial/13_shader_builder.vcxproj
  19. +3
    -11
      doc/tutorial/14_lua.vcxproj
  20. +2
    -8
      doc/tutorial/15_gui.vcxproj
  21. +2
    -8
      doc/tutorial/16_movie.vcxproj
  22. +1
    -5
      src/lol-core.vcxproj
  23. +2
    -8
      src/t/test-base.vcxproj
  24. +2
    -8
      src/t/test-entity.vcxproj
  25. +2
    -8
      src/t/test-image.vcxproj
  26. +2
    -8
      src/t/test-math.vcxproj
  27. +2
    -8
      src/t/test-sys.vcxproj

+ 3
- 0
build.config Bestand weergeven

@@ -7,6 +7,9 @@
<enable_ffmpeg>yes</enable_ffmpeg>
<enable_gl>yes</enable_gl>
<enable_sdl>yes</enable_sdl>
<enable_imlib2>yes</enable_imlib2>
<!-- not available yet -->
<enable_png>no</enable_png>

</PropertyGroup>
</Project>

+ 10
- 0
build/msbuild/lol-bullet.props Bestand weergeven

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<ItemGroup>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>

</Project>

+ 10
- 0
build/msbuild/lol-core.props Bestand weergeven

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
</ItemGroup>

</Project>

+ 10
- 0
build/msbuild/lol-lua.props Bestand weergeven

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<ItemGroup>
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-lua.vcxproj">
<Project>{d84021ca-b233-4e0f-8a52-071b83bbccc4}</Project>
</ProjectReference>
</ItemGroup>

</Project>

+ 2
- 8
doc/samples/benchsuite.vcxproj Bestand weergeven

@@ -44,14 +44,8 @@
<ClCompile Include="benchmark\vector.cpp" />
<ClCompile Include="benchsuite.cpp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{B1E10086-A1DA-401A-834D-969C9DBB5CC1}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 2
- 8
doc/samples/btphystest.vcxproj Bestand weergeven

@@ -55,14 +55,8 @@
<ClCompile Include="physics\easyconstraint.cpp" />
<ClCompile Include="physics\easyphysics.cpp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<ItemGroup>
<None Include="Makefile.am">
<ExcludedFromBuild Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">true</ExcludedFromBuild>


+ 2
- 8
doc/tutorial/01_triangle.vcxproj Bestand weergeven

@@ -44,14 +44,8 @@
<ItemGroup>
<LolFxCompile Include="01_triangle.lolfx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{b92abadc-45be-4cc5-b724-9426053123a1}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 2
- 8
doc/tutorial/02_cube.vcxproj Bestand weergeven

@@ -44,14 +44,8 @@
<ItemGroup>
<LolFxCompile Include="02_cube.lolfx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{7b083da2-fe08-4f6d-bfdd-195d5c2783eb}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 2
- 8
doc/tutorial/03_noise.vcxproj Bestand weergeven

@@ -44,14 +44,8 @@
<ItemGroup>
<LolFxCompile Include="03_noise.lolfx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{b0a53d75-cbb4-4fdf-93ac-2d12a79ada0e}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 2
- 8
doc/tutorial/04_texture.vcxproj Bestand weergeven

@@ -44,14 +44,8 @@
<ItemGroup>
<LolFxCompile Include="04_texture.lolfx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{834852db-edb6-4fd0-bcf9-45cd01126962}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 3
- 11
doc/tutorial/05_easymesh.vcxproj Bestand weergeven

@@ -41,17 +41,9 @@
<ItemGroup>
<ClCompile Include="05_easymesh.cpp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-lua.vcxproj">
<Project>{d84021ca-b233-4e0f-8a52-071b83bbccc4}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<Import Project="$(LolDir)\build\msbuild\lol-lua.props" />
<ItemGroup>
<None Include="05_easymesh.lua">
<ExcludedFromBuild>true</ExcludedFromBuild>


+ 2
- 8
doc/tutorial/06_sprite.vcxproj Bestand weergeven

@@ -41,14 +41,8 @@
<ItemGroup>
<ClCompile Include="06_sprite.cpp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{E05E23A5-67DE-42B5-98A3-E63CCE0CC0AF}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 2
- 8
doc/tutorial/07_input.vcxproj Bestand weergeven

@@ -44,14 +44,8 @@
<ItemGroup>
<LolFxCompile Include="07_input.lolfx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{572E5B9C-7E19-489C-BD8A-E8401CFBBC47}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 2
- 8
doc/tutorial/08_fbo.vcxproj Bestand weergeven

@@ -44,14 +44,8 @@
<ItemGroup>
<LolFxCompile Include="08_fbo.lolfx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{BCEE0132-8E24-49BE-AFEB-96DAD14396BA}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 2
- 8
doc/tutorial/09_sound.vcxproj Bestand weergeven

@@ -41,14 +41,8 @@
<ItemGroup>
<ClCompile Include="09_sound.cpp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{51626A22-DD68-4450-9696-13B03BF7A2C5}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 2
- 8
doc/tutorial/11_fractal.vcxproj Bestand weergeven

@@ -44,14 +44,8 @@
<ItemGroup>
<LolFxCompile Include="11_fractal.lolfx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{6bf81b39-edc2-4227-9992-c2d8abea95af}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 2
- 8
doc/tutorial/12_voronoi.vcxproj Bestand weergeven

@@ -48,14 +48,8 @@
<LolFxCompile Include="12_voronoi_distance.lolfx" />
<LolFxCompile Include="12_distance.lolfx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{6bf81b39-edc2-4227-9982-c2d8abea95af}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 2
- 8
doc/tutorial/13_shader_builder.vcxproj Bestand weergeven

@@ -38,14 +38,8 @@
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<ItemGroup>
<ClCompile Include="13_shader_builder.cpp" />
</ItemGroup>


+ 3
- 11
doc/tutorial/14_lua.vcxproj Bestand weergeven

@@ -38,17 +38,9 @@
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-lua.vcxproj">
<Project>{d84021ca-b233-4e0f-8a52-071b83bbccc4}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<Import Project="$(LolDir)\build\msbuild\lol-lua.props" />
<ItemGroup>
<ClCompile Include="14_lua.cpp" />
</ItemGroup>


+ 2
- 8
doc/tutorial/15_gui.vcxproj Bestand weergeven

@@ -38,14 +38,8 @@
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<ItemGroup>
<ClCompile Include="15_gui.cpp" />
</ItemGroup>


+ 2
- 8
doc/tutorial/16_movie.vcxproj Bestand weergeven

@@ -41,14 +41,8 @@
<ItemGroup>
<ClCompile Include="16_movie.cpp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{5F5714D0-1C3D-4522-A409-214C5A2951AA}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 1
- 5
src/lol-core.vcxproj Bestand weergeven

@@ -413,11 +413,7 @@
<ExcludedFromBuild>true</ExcludedFromBuild>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
<Import Project="$(LolDir)\build\msbuild\lolfx.targets" />


+ 2
- 8
src/t/test-base.vcxproj Bestand weergeven

@@ -46,14 +46,8 @@
<ClCompile Include="base\string.cpp" />
<ClCompile Include="base\types.cpp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{8f59a635-0240-4d7f-a80d-050c3f1670c2}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 2
- 8
src/t/test-entity.vcxproj Bestand weergeven

@@ -42,14 +42,8 @@
<ClCompile Include="test-common.cpp" />
<ClCompile Include="entity\camera.cpp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{d7f6c2ca-5a13-4fd0-8468-1833923e3ee3}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 2
- 8
src/t/test-image.vcxproj Bestand weergeven

@@ -43,14 +43,8 @@
<ClCompile Include="image\color.cpp" />
<ClCompile Include="image\image.cpp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{5a27ff18-a1ec-49be-9455-415f1c701153}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 2
- 8
src/t/test-math.vcxproj Bestand weergeven

@@ -60,14 +60,8 @@
<ClCompile Include="math\trig.cpp" />
<ClCompile Include="math\vector.cpp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{962d4e25-45d3-4ace-8c02-69fa3713abd4}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


+ 2
- 8
src/t/test-sys.vcxproj Bestand weergeven

@@ -42,14 +42,8 @@
<ClCompile Include="test-common.cpp" />
<ClCompile Include="sys\thread.cpp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj">
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project>
</ProjectReference>
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj">
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project>
</ProjectReference>
</ItemGroup>
<Import Project="$(LolDir)\build\msbuild\lol-core.props" />
<Import Project="$(LolDir)\build\msbuild\lol-bullet.props" />
<PropertyGroup Label="Globals">
<ProjectGuid>{1782f849-b6e1-466d-9f02-a751f3f8712c}</ProjectGuid>
<ConfigurationType>Application</ConfigurationType>


Laden…
Annuleren
Opslaan