@@ -3,6 +3,7 @@ | |||||
<PropertyGroup Label="Configuration"> | <PropertyGroup Label="Configuration"> | ||||
<!-- yes/no values --> | <!-- yes/no values --> | ||||
<enable_bullet>yes</enable_bullet> | |||||
<enable_ffmpeg>yes</enable_ffmpeg> | <enable_ffmpeg>yes</enable_ffmpeg> | ||||
<enable_gl>yes</enable_gl> | <enable_gl>yes</enable_gl> | ||||
<enable_sdl>yes</enable_sdl> | <enable_sdl>yes</enable_sdl> | ||||
@@ -81,6 +81,15 @@ if test "$ac_cv_have_getopt_long" != "no"; then | |||||
fi | fi | ||||
dnl Use Bullet Physics? | |||||
ac_cv_my_have_bullet="no" | |||||
if test "${enable_bullet}" != "no"; then | |||||
ac_cv_my_have_bullet="yes" | |||||
AC_DEFINE(LOL_USE_BULLET, 1, Define to 1 to use Bullet Physics) | |||||
fi | |||||
AM_CONDITIONAL(LOL_USE_BULLET, test "${ac_cv_my_have_bullet}" = "yes") | |||||
dnl Use NativeClient? | dnl Use NativeClient? | ||||
ac_cv_my_have_nacl="no" | ac_cv_my_have_nacl="no" | ||||
AC_LANG_PUSH(C++) | AC_LANG_PUSH(C++) | ||||
@@ -90,6 +90,8 @@ AC_ARG_ENABLE(imlib2, | |||||
[ --enable-imlib2 build using Imlib2 (default autodetected)]) | [ --enable-imlib2 build using Imlib2 (default autodetected)]) | ||||
AC_ARG_ENABLE(png, | AC_ARG_ENABLE(png, | ||||
[ --enable-png build using libpng (default autodetected)]) | [ --enable-png build using libpng (default autodetected)]) | ||||
AC_ARG_ENABLE(bullet, | |||||
[ --enable-bullet build using Bullet Physics (default yes)]) | |||||
AC_ARG_ENABLE(test, | AC_ARG_ENABLE(test, | ||||
[ --enable-test build test suite (default yes)]) | [ --enable-test build test suite (default yes)]) | ||||
@@ -9,7 +9,10 @@ bench: benchsuite$(EXEEXT) | |||||
if BUILD_SAMPLES | if BUILD_SAMPLES | ||||
noinst_PROGRAMS = bluenoise benchsuite simplex | noinst_PROGRAMS = bluenoise benchsuite simplex | ||||
if LOL_USE_GL | if LOL_USE_GL | ||||
noinst_PROGRAMS += btphystest nacl_phystest | |||||
noinst_PROGRAMS += nacl_phystest | |||||
if LOL_USE_BULLET | |||||
noinst_PROGRAMS += btphystest | |||||
endif | |||||
endif | endif | ||||
endif | endif | ||||
@@ -41,7 +41,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -51,7 +51,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -38,7 +38,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-lua.vcxproj"> | <ProjectReference Include="$(LolDir)\src\3rdparty\lol-lua.vcxproj"> | ||||
@@ -40,7 +40,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -40,7 +40,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -40,7 +40,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -40,7 +40,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -40,7 +40,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -37,7 +37,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-lua.vcxproj"> | <ProjectReference Include="$(LolDir)\src\3rdparty\lol-lua.vcxproj"> | ||||
@@ -37,7 +37,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -40,7 +40,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -40,7 +40,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -40,7 +40,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -44,7 +44,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -34,7 +34,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -34,7 +34,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-lua.vcxproj"> | <ProjectReference Include="$(LolDir)\src\3rdparty\lol-lua.vcxproj"> | ||||
@@ -34,7 +34,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -1,7 +1,10 @@ | |||||
include $(top_srcdir)/build/autotools/common.am | include $(top_srcdir)/build/autotools/common.am | ||||
noinst_LIBRARIES = liblol-bullet.a liblol-lua.a | |||||
noinst_LIBRARIES = liblol-lua.a | |||||
if LOL_USE_BULLET | |||||
noinst_LIBRARIES += liblol-bullet.a | |||||
endif | |||||
# Only remove flags that were actually set, because we don't know | # Only remove flags that were actually set, because we don't know | ||||
# what the compiler actually accepts. | # what the compiler actually accepts. | ||||
@@ -26,8 +26,10 @@ liblol_core_a_SOURCES = \ | |||||
$(sdl_sources) \ | $(sdl_sources) \ | ||||
$(d3d9_sources) \ | $(d3d9_sources) \ | ||||
$(android_sources) | $(android_sources) | ||||
#liblol_core_a_CPPFLAGS = -include-pch $(srcdir)/lol/engine-internal.h.pch $(AM_CPPFLAGS) -I$(srcdir)/3rdparty/bullet3/src -I$(srcdir)/3rdparty/lua/src | |||||
liblol_core_a_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/3rdparty/bullet3/src -I$(srcdir)/3rdparty/lua/src | |||||
liblol_core_a_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/3rdparty/lua/src | |||||
if LOL_USE_BULLET | |||||
liblol_core_a_CPPFLAGS += -I$(srcdir)/3rdparty/bullet3/src | |||||
endif | |||||
liblol_core_headers = \ | liblol_core_headers = \ | ||||
lol/engine-internal.h lol/engine.h lol/public.h lol/extras.h lol/legacy.h \ | lol/engine-internal.h lol/engine.h lol/public.h lol/extras.h lol/legacy.h \ | ||||
@@ -396,7 +396,7 @@ | |||||
</None> | </None> | ||||
</ItemGroup> | </ItemGroup> | ||||
<ItemGroup> | <ItemGroup> | ||||
<ProjectReference Include="3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -42,7 +42,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -38,7 +38,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -39,7 +39,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -55,7 +55,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||
@@ -38,7 +38,7 @@ | |||||
<ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | <ProjectReference Include="$(LolDir)\src\lol-core.vcxproj"> | ||||
<Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | <Project>{9e62f2fe-3408-4eae-8238-fd84238ceeda}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
<ProjectReference Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<ProjectReference Condition="'$(enable_bullet)'!='no'" Include="$(LolDir)\src\3rdparty\lol-bullet.vcxproj"> | |||||
<Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | <Project>{83d3b207-c601-4025-8f41-01dedc354661}</Project> | ||||
</ProjectReference> | </ProjectReference> | ||||
</ItemGroup> | </ItemGroup> | ||||