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 350B

123456789101112
  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. dependencies: [common, libtracy, libthreads, libgl, libglfw3],
  11. install: true,
  12. include_directories: 'include/cygnet'))