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

123456789101112
  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. name_prefix: '',
  7. name_suffix: 'so',
  8. install: true,
  9. install_dir: 'core.mod',
  10. dependencies: [libswan, libperlinnoise])
  11. install_subdir('assets', install_dir: 'core.mod')