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

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

include_folder = include_directories('include')

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