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

12345678910111213
  1. core_mod = shared_library('mod',
  2. 'src/main.cc',
  3. 'src/DefaultWorldGen.cc',
  4. 'src/entities/PlayerEntity.cc',
  5. 'src/entities/ItemStackEntity.cc',
  6. 'src/world/tree.cc',
  7. name_prefix: '',
  8. name_suffix: 'so',
  9. install: true,
  10. install_dir: 'core.mod',
  11. dependencies: [libswan, libperlinnoise])
  12. install_subdir('assets', install_dir: 'core.mod')