blob: 5a5a8c3d610119db02a2867b8ed3a89adedb02dc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
project('world', 'c')
xxhash_dep = dependency('libxxhash', required : true, static : true)
include_folder = include_directories('include')
comp = meson.get_compiler('c')
libasan_dep = comp.find_library('clang_rt.asan_dynamic-x86_64', dirs : ['C:\\Program Files\\LLVM\\lib\\clang\\15.0.6\\lib\\windows'])
subdir('src')
executable('world', libworld_sources, include_directories : [include_folder],
dependencies : [xxhash_dep, libasan_dep],
win_subsystem : 'console')
|