summaryrefslogtreecommitdiff
path: root/subprojects/lz4
diff options
context:
space:
mode:
authorAndrew Opalach <andrew@akon.city> 2024-10-03 19:08:44 -0400
committerAndrew Opalach <andrew@akon.city> 2024-10-04 14:19:40 -0400
commit0bf9b26b87075448d49482fe4411739af765d872 (patch)
treee3f0e3312a92e5250fa72b410adb370734deca04 /subprojects/lz4
parentacd44bb898996ff4e36b39b10e870e40bcaf2634 (diff)
downloadmauri-0bf9b26b87075448d49482fe4411739af765d872.tar.gz
mauri-0bf9b26b87075448d49482fe4411739af765d872.tar.bz2
mauri-0bf9b26b87075448d49482fe4411739af765d872.zip
Update codebase
Bring up-to-date with my other projects. Wallpaper engine behavior is mostly unchanged. Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'subprojects/lz4')
-rw-r--r--subprojects/lz4/meson.build13
1 files changed, 0 insertions, 13 deletions
diff --git a/subprojects/lz4/meson.build b/subprojects/lz4/meson.build
deleted file mode 100644
index 00a68a2..0000000
--- a/subprojects/lz4/meson.build
+++ /dev/null
@@ -1,13 +0,0 @@
-project('lz4', 'c')
-
-compiler = meson.get_compiler('cpp')
-
-is_msvc = compiler.get_id() == 'msvc' or compiler.get_id() == 'clang-cl'
-
-if is_msvc
- lz4_lib = compiler.find_library('lz4_static',
- dirs: [join_paths(meson.current_source_dir(), 'static')])
- lz4 = declare_dependency(dependencies: lz4_lib, include_directories: include_directories('include'))
-else
- lz4 = compiler.find_library('lz4')
-endif