選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

157 行
5.4 KiB

  1. include $(top_srcdir)/build/autotools/common.am
  2. SUBDIRS = 3rdparty data . t
  3. noinst_LIBRARIES = liblol-core.a
  4. EXTRA_DIST += lol-core.vcxproj lol-core.vcxproj.filters
  5. liblol_core_a_SOURCES = \
  6. lolgl.h scene.cpp scene.h font.cpp font.h \
  7. textureimage.cpp textureimage.h textureimage-private.h \
  8. tileset.cpp tileset.h video.cpp video.h \
  9. profiler.cpp profiler.h text.cpp text.h emitter.cpp emitter.h \
  10. numeric.h utils.h messageservice.cpp messageservice.h \
  11. gradient.cpp gradient.h gradient.lolfx \
  12. platform.cpp platform.h sprite.cpp sprite.h camera.cpp camera.h \
  13. light.cpp light.h \
  14. \
  15. $(liblol_core_headers) \
  16. $(liblol_core_sources) \
  17. \
  18. $(imgui_sources) \
  19. $(sdl_sources) \
  20. $(d3d9_sources) \
  21. $(android_sources)
  22. liblol_core_a_CPPFLAGS = $(AM_CPPFLAGS) -I$(srcdir)/3rdparty/lua/src
  23. liblol_core_headers = \
  24. lol/engine-internal.h lol/engine.h lol/public.h lol/extras.h lol/legacy.h \
  25. lol/lua.h \
  26. \
  27. lol/base/all.h \
  28. lol/base/avl_tree.h lol/base/features.h lol/base/tuple.h lol/base/types.h \
  29. lol/base/array.h lol/base/assert.h lol/base/string.h lol/base/map.h \
  30. lol/base/enum.h lol/base/log.h \
  31. \
  32. lol/math/all.h \
  33. lol/math/functions.h lol/math/vector.h lol/math/half.h lol/math/real.h \
  34. lol/math/geometry.h lol/math/interp.h lol/math/rand.h lol/math/arraynd.h \
  35. lol/math/constants.h lol/math/matrix.h lol/math/ops.h \
  36. lol/math/transform.h lol/math/polynomial.h lol/math/bigint.h \
  37. lol/math/noise/gradient.h lol/math/noise/perlin.h \
  38. lol/math/noise/simplex.h \
  39. \
  40. lol/algorithm/all.h \
  41. lol/algorithm/sort.h lol/algorithm/portal.h lol/algorithm/aabb_tree.h \
  42. \
  43. lol/audio/all.h \
  44. lol/audio/audio.h lol/audio/sample.h \
  45. \
  46. lol/engine/all.h \
  47. lol/engine/tickable.h \
  48. \
  49. lol/sys/all.h \
  50. lol/sys/init.h lol/sys/file.h lol/sys/getopt.h lol/sys/thread.h \
  51. lol/sys/timer.h \
  52. \
  53. lol/image/all.h \
  54. lol/image/pixel.h lol/image/color.h lol/image/image.h \
  55. lol/image/resource.h lol/image/movie.h \
  56. \
  57. lol/gpu/all.h \
  58. lol/gpu/shader.h lol/gpu/indexbuffer.h lol/gpu/vertexbuffer.h \
  59. lol/gpu/framebuffer.h lol/gpu/texture.h lol/gpu/lolfx.h \
  60. lol/gpu/renderer.h lol/gpu/rendercontext.h lol/gpu/debug.h \
  61. \
  62. lol/debug/all.h \
  63. lol/debug/lines.h
  64. liblol_core_sources = \
  65. application/application.cpp application/application.h \
  66. application/egl-app.cpp application/egl-app.h \
  67. \
  68. lolua/baselua.cpp lolua/baselua.h \
  69. \
  70. commandstack.h \
  71. easymesh/easymeshbuild.cpp easymesh/easymeshbuild.h \
  72. easymesh/easymeshrender.cpp easymesh/easymeshrender.h \
  73. easymesh/easymesh.cpp \
  74. easymesh/easymeshinternal.cpp easymesh/easymeshcsg.cpp \
  75. easymesh/easymeshprimitive.cpp easymesh/easymeshtransform.cpp \
  76. easymesh/easymeshcursor.cpp easymesh/easymesh.h \
  77. easymesh/easymeshlua.cpp easymesh/easymeshlua.h \
  78. easymesh/csgbsp.cpp easymesh/csgbsp.h \
  79. easymesh/shiny.lolfx easymesh/shinyflat.lolfx \
  80. easymesh/shinydebugwireframe.lolfx \
  81. easymesh/shinydebuglighting.lolfx easymesh/shinydebugnormal.lolfx \
  82. easymesh/shinydebugUV.lolfx easymesh/shiny_SK.lolfx \
  83. \
  84. base/assert.cpp base/features.cpp base/log.cpp base/string.cpp \
  85. \
  86. math/vector.cpp math/matrix.cpp math/transform.cpp math/half.cpp \
  87. math/geometry.cpp math/real.cpp \
  88. \
  89. gpu/shader.cpp gpu/indexbuffer.cpp gpu/vertexbuffer.cpp \
  90. gpu/framebuffer.cpp gpu/texture.cpp gpu/renderer.cpp \
  91. gpu/rendercontext.cpp gpu/debug.cpp \
  92. \
  93. audio/audio.cpp audio/sample.cpp \
  94. \
  95. ui/input.cpp ui/input.h ui/keys.inc ui/buttons.inc \
  96. ui/gui.cpp ui/gui.h \
  97. \
  98. gpu/default-material.lolfx \
  99. gpu/empty-material.lolfx \
  100. gpu/test-material.lolfx \
  101. gpu/tile.lolfx gpu/palette.lolfx gpu/line.lolfx \
  102. gpu/blit.lolfx \
  103. gpu/postprocess.lolfx \
  104. \
  105. gpu/lolfx.cpp \
  106. \
  107. mesh/mesh.cpp mesh/mesh.h \
  108. mesh/primitivemesh.cpp mesh/primitivemesh.h \
  109. \
  110. sys/init.cpp sys/file.cpp sys/hacks.cpp sys/getopt.cpp \
  111. \
  112. image/resource.cpp image/resource-private.h \
  113. image/image.cpp image/image-private.h image/kernel.cpp image/pixel.cpp \
  114. image/crop.cpp image/resample.cpp image/noise.cpp image/combine.cpp \
  115. image/codec/gdiplus-image.cpp image/codec/imlib2-image.cpp \
  116. image/codec/sdl-image.cpp image/codec/ios-image.cpp \
  117. image/codec/zed-image.cpp image/codec/zed-palette-image.cpp \
  118. image/codec/oric-image.cpp image/codec/dummy-image.cpp \
  119. image/color/cie1931.cpp image/color/color.cpp \
  120. image/dither/random.cpp image/dither/ediff.cpp image/dither/dbs.cpp \
  121. image/dither/ostromoukhov.cpp image/dither/ordered.cpp \
  122. image/filter/convolution.cpp image/filter/colors.cpp \
  123. image/filter/dilate.cpp image/filter/median.cpp image/filter/yuv.cpp \
  124. image/movie.cpp \
  125. \
  126. engine/tickable.cpp engine/ticker.cpp engine/ticker.h \
  127. engine/entity.cpp engine/entity.h \
  128. engine/world.cpp engine/world.h \
  129. engine/worldentity.cpp engine/worldentity.h \
  130. \
  131. loldebug.h \
  132. debug/fps.cpp debug/fps.h debug/lines.cpp \
  133. debug/record.cpp debug/record.h debug/stats.cpp debug/stats.h
  134. if LOL_USE_SDL
  135. sdl_sources = \
  136. application/sdl-app.cpp application/sdl-app.h \
  137. ui/sdl-input.cpp ui/sdl-input.h
  138. endif
  139. d3d9_sources = \
  140. ui/d3d9-input.cpp ui/d3d9-input.h
  141. include 3rdparty/lol-imgui.am
  142. android_sources = \
  143. image/codec/android-image.cpp \
  144. application/android-app.cpp application/android-app.h