summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2024-02-22 01:11:01 -0600
committerLibravatar bigfoot547 <[email protected]>2024-02-22 01:11:01 -0600
commitd8ff87989f616291dcb998670958fd42029796e5 (patch)
tree0c71a9e1c54e9892caedda3702de3593a7f8c861 /meson.build
parentchanges (diff)
some stuffHEADmaster
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build3
1 files changed, 1 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 5a5a8c3..2446e19 100644
--- a/meson.build
+++ b/meson.build
@@ -5,9 +5,8 @@ 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],
+ dependencies : [xxhash_dep],
win_subsystem : 'console')