summaryrefslogtreecommitdiffstats
path: root/meson.build
blob: 2446e1906a9ccdd278cae1af907cfe3ccbf2ff08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
project('world', 'c')

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

include_folder = include_directories('include')

comp = meson.get_compiler('c')

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