25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile.am 483 B

12345678910111213141516171819
  1. include $(top_srcdir)/build/autotools/common.am
  2. if BUILD_SAMPLES
  3. if LOL_USE_GL
  4. noinst_PROGRAMS = meshviewer
  5. endif
  6. endif
  7. meshviewer_SOURCES = meshviewer.cpp meshviewer.h \
  8. scenesetup.cpp scenesetup.h \
  9. shinymvtexture.lolfx shinyfur.lolfx
  10. meshviewer_CPPFLAGS = $(AM_CPPFLAGS)
  11. meshviewer_DEPENDENCIES = @LOL_DEPS@ @LOL_LUA_DEPS@
  12. meshviewer_LDFLAGS = $(AM_LDFLAGS) @LOL_LUA_DEPS@
  13. if LOL_USE_EMSCRIPTEN
  14. meshviewer_LDFLAGS += -s EXPORTED_FUNCTIONS="['_main', '_C_Send']"
  15. endif