Procházet zdrojové kódy

Fully move meshviewer to its own subdirectory to avoid build errors.

undefined
Sam Hocevar před 9 roky
rodič
revize
d33c31279e
9 změnil soubory, kde provedl 21 přidání a 16 odebrání
  1. +1
    -1
      .gitignore
  2. +1
    -1
      build/Lol (vs2013).sln
  3. +1
    -1
      build/Lol (vs2015).sln
  4. +1
    -0
      configure.ac
  5. +2
    -13
      doc/samples/Makefile.am
  6. +15
    -0
      doc/samples/meshviewer/Makefile.am
  7. +0
    -0
      doc/samples/meshviewer/meshviewer.vcxproj
  8. +0
    -0
      doc/samples/meshviewer/shinyfur.lolfx
  9. +0
    -0
      doc/samples/meshviewer/shinymvtexture.lolfx

+ 1
- 1
.gitignore Zobrazit soubor

@@ -77,7 +77,7 @@ _ReSharper.*
demos/lol.js/lol.js
doc/samples/benchsuite
doc/samples/btphystest
doc/samples/meshviewer
doc/samples/meshviewer/meshviewer
doc/samples/nacl_phystest
doc/samples/sandbox/sample
doc/samples/math/pi


+ 1
- 1
build/Lol (vs2013).sln Zobrazit soubor

@@ -92,7 +92,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Benlitz", "Benlitz", "{B583
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "benlitzTest1", "..\people\benlitz\test1\benlitzTest1.vcxproj", "{FAF82AD2-D9F4-4694-9A01-103BC5B771B4}"
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
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tactics", "..\people\touky\tactics\tactics.vcxproj", "{25493FC8-75AC-4703-AD58-AB0C4A0FB79C}"
EndProject


+ 1
- 1
build/Lol (vs2015).sln Zobrazit soubor

@@ -92,7 +92,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Benlitz", "Benlitz", "{B583
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "benlitzTest1", "..\people\benlitz\test1\benlitzTest1.vcxproj", "{FAF82AD2-D9F4-4694-9A01-103BC5B771B4}"
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
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tactics", "..\people\touky\tactics\tactics.vcxproj", "{25493FC8-75AC-4703-AD58-AB0C4A0FB79C}"
EndProject


+ 1
- 0
configure.ac Zobrazit soubor

@@ -483,6 +483,7 @@ AC_CONFIG_FILES(
doc/doxygen.cfg
doc/samples/Makefile
doc/samples/math/Makefile
doc/samples/meshviewer/Makefile
doc/samples/sandbox/Makefile
doc/tutorial/Makefile
])


+ 2
- 13
doc/samples/Makefile.am Zobrazit soubor

@@ -1,13 +1,12 @@

include $(top_srcdir)/build/autotools/common.am

SUBDIRS = math sandbox
SUBDIRS = math meshviewer sandbox

bench: benchsuite$(EXEEXT)
./benchsuite$(EXEEXT)

noinst_PROGRAMS = benchsuite btphystest nacl_phystest meshviewer \
simplex
noinst_PROGRAMS = benchsuite btphystest nacl_phystest simplex

benchsuite_SOURCES = benchsuite.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_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_CPPFLAGS = $(AM_CPPFLAGS)
simplex_DEPENDENCIES = @LOL_DEPS@


+ 15
- 0
doc/samples/meshviewer/Makefile.am Zobrazit soubor

@@ -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


doc/samples/meshviewer.vcxproj → doc/samples/meshviewer/meshviewer.vcxproj Zobrazit soubor


doc/samples/data/shinyfur.lolfx → doc/samples/meshviewer/shinyfur.lolfx Zobrazit soubor


doc/samples/data/shinymvtexture.lolfx → doc/samples/meshviewer/shinymvtexture.lolfx Zobrazit soubor


Načítá se…
Zrušit
Uložit