A 2D tile-based sandbox game.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

meson.build 377B

12345678910111213
  1. libcygnet = declare_dependency(
  2. include_directories: 'include',
  3. link_with: library('cygnet',
  4. 'src/GlWrappers.cc',
  5. 'src/Renderer.cc',
  6. 'src/ResourceManager.cc',
  7. 'src/shaders.cc',
  8. 'src/TileAtlas.cc',
  9. 'src/util.cc',
  10. 'src/Window.cc',
  11. dependencies: [common, libtracy, libthreads, libsdl2, libgl, libglew],
  12. install: true,
  13. include_directories: 'include/cygnet'))