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

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