summaryrefslogtreecommitdiffstats
path: root/meson.build
blob: 11da0570fed7230844014b9303aed168ec4b4bec (plain) (blame)
1
2
3
4
5
6
project('world', 'c')

xxhash_dep = dependency('libxxhash', required : true, static : true)

subdir('src')
executable('world', libworld_sources, dependencies : [xxhash_dep], win_subsystem : 'console')