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')