@@ -77,7 +77,7 @@ _ReSharper.* | |||||
demos/lol.js/lol.js | demos/lol.js/lol.js | ||||
doc/samples/benchsuite | doc/samples/benchsuite | ||||
doc/samples/btphystest | doc/samples/btphystest | ||||
doc/samples/meshviewer | |||||
doc/samples/meshviewer/meshviewer | |||||
doc/samples/nacl_phystest | doc/samples/nacl_phystest | ||||
doc/samples/sandbox/sample | doc/samples/sandbox/sample | ||||
doc/samples/math/pi | doc/samples/math/pi | ||||
@@ -92,7 +92,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Benlitz", "Benlitz", "{B583 | |||||
EndProject | EndProject | ||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "benlitzTest1", "..\people\benlitz\test1\benlitzTest1.vcxproj", "{FAF82AD2-D9F4-4694-9A01-103BC5B771B4}" | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "benlitzTest1", "..\people\benlitz\test1\benlitzTest1.vcxproj", "{FAF82AD2-D9F4-4694-9A01-103BC5B771B4}" | ||||
EndProject | EndProject | ||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "meshviewer", "..\doc\samples\meshviewer.vcxproj", "{7CE9FE12-E4AB-4A22-90D4-2C15F0C30D4E}" | |||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "meshviewer", "..\doc\samples\meshviewer\meshviewer.vcxproj", "{7CE9FE12-E4AB-4A22-90D4-2C15F0C30D4E}" | |||||
EndProject | EndProject | ||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tactics", "..\people\touky\tactics\tactics.vcxproj", "{25493FC8-75AC-4703-AD58-AB0C4A0FB79C}" | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tactics", "..\people\touky\tactics\tactics.vcxproj", "{25493FC8-75AC-4703-AD58-AB0C4A0FB79C}" | ||||
EndProject | EndProject | ||||
@@ -92,7 +92,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Benlitz", "Benlitz", "{B583 | |||||
EndProject | EndProject | ||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "benlitzTest1", "..\people\benlitz\test1\benlitzTest1.vcxproj", "{FAF82AD2-D9F4-4694-9A01-103BC5B771B4}" | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "benlitzTest1", "..\people\benlitz\test1\benlitzTest1.vcxproj", "{FAF82AD2-D9F4-4694-9A01-103BC5B771B4}" | ||||
EndProject | EndProject | ||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "meshviewer", "..\doc\samples\meshviewer.vcxproj", "{7CE9FE12-E4AB-4A22-90D4-2C15F0C30D4E}" | |||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "meshviewer", "..\doc\samples\meshviewer\meshviewer.vcxproj", "{7CE9FE12-E4AB-4A22-90D4-2C15F0C30D4E}" | |||||
EndProject | EndProject | ||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tactics", "..\people\touky\tactics\tactics.vcxproj", "{25493FC8-75AC-4703-AD58-AB0C4A0FB79C}" | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tactics", "..\people\touky\tactics\tactics.vcxproj", "{25493FC8-75AC-4703-AD58-AB0C4A0FB79C}" | ||||
EndProject | EndProject | ||||
@@ -483,6 +483,7 @@ AC_CONFIG_FILES( | |||||
doc/doxygen.cfg | doc/doxygen.cfg | ||||
doc/samples/Makefile | doc/samples/Makefile | ||||
doc/samples/math/Makefile | doc/samples/math/Makefile | ||||
doc/samples/meshviewer/Makefile | |||||
doc/samples/sandbox/Makefile | doc/samples/sandbox/Makefile | ||||
doc/tutorial/Makefile | doc/tutorial/Makefile | ||||
]) | ]) | ||||
@@ -1,13 +1,12 @@ | |||||
include $(top_srcdir)/build/autotools/common.am | include $(top_srcdir)/build/autotools/common.am | ||||
SUBDIRS = math sandbox | |||||
SUBDIRS = math meshviewer sandbox | |||||
bench: benchsuite$(EXEEXT) | bench: benchsuite$(EXEEXT) | ||||
./benchsuite$(EXEEXT) | ./benchsuite$(EXEEXT) | ||||
noinst_PROGRAMS = benchsuite btphystest nacl_phystest meshviewer \ | |||||
simplex | |||||
noinst_PROGRAMS = benchsuite btphystest nacl_phystest simplex | |||||
benchsuite_SOURCES = benchsuite.cpp \ | benchsuite_SOURCES = benchsuite.cpp \ | ||||
benchmark/vector.cpp benchmark/half.cpp benchmark/trig.cpp \ | benchmark/vector.cpp benchmark/half.cpp benchmark/trig.cpp \ | ||||
@@ -41,16 +40,6 @@ nacl_phystest_CPPFLAGS = $(AM_CPPFLAGS) -I$(top_srcdir)/src/bullet \ | |||||
nacl_phystest_DEPENDENCIES = @LOL_DEPS@ | nacl_phystest_DEPENDENCIES = @LOL_DEPS@ | ||||
nacl_phystest_LDFLAGS = $(AM_LDFLAGS) | nacl_phystest_LDFLAGS = $(AM_LDFLAGS) | ||||
meshviewer_SOURCES = meshviewer/meshviewer.cpp meshviewer/meshviewer.h \ | |||||
meshviewer/scenesetup.cpp meshviewer/scenesetup.h \ | |||||
data/shinymvtexture.lolfx data/shinyfur.lolfx | |||||
meshviewer_CPPFLAGS = $(AM_CPPFLAGS) | |||||
meshviewer_DEPENDENCIES = @LOL_DEPS@ | |||||
meshviewer_LDFLAGS = $(AM_LDFLAGS) | |||||
if USE_EMSCRIPTEN | |||||
meshviewer_LDFLAGS += -s EXPORTED_FUNCTIONS="['_main', '_C_Send']" | |||||
endif | |||||
simplex_SOURCES = simplex.cpp | simplex_SOURCES = simplex.cpp | ||||
simplex_CPPFLAGS = $(AM_CPPFLAGS) | simplex_CPPFLAGS = $(AM_CPPFLAGS) | ||||
simplex_DEPENDENCIES = @LOL_DEPS@ | simplex_DEPENDENCIES = @LOL_DEPS@ | ||||
@@ -0,0 +1,15 @@ | |||||
include $(top_srcdir)/build/autotools/common.am | |||||
noinst_PROGRAMS = meshviewer | |||||
meshviewer_SOURCES = meshviewer.cpp meshviewer.h \ | |||||
scenesetup.cpp scenesetup.h \ | |||||
shinymvtexture.lolfx shinyfur.lolfx | |||||
meshviewer_CPPFLAGS = $(AM_CPPFLAGS) | |||||
meshviewer_DEPENDENCIES = @LOL_DEPS@ | |||||
meshviewer_LDFLAGS = $(AM_LDFLAGS) | |||||
if USE_EMSCRIPTEN | |||||
meshviewer_LDFLAGS += -s EXPORTED_FUNCTIONS="['_main', '_C_Send']" | |||||
endif | |||||