diff options
author | Vaxry <[email protected]> | 2024-05-13 15:29:18 +0100 |
---|---|---|
committer | Vaxry <[email protected]> | 2024-05-13 15:29:18 +0100 |
commit | 47874f09f4d14703fe0c483a46b345c7be601ace (patch) | |
tree | aa890e8ae3b0a1eec58c48789e81a2d809c6a238 | |
parent | 60be4298e13b02913f241dd79fe7517f185299d0 (diff) | |
download | Hyprland-47874f09f4d14703fe0c483a46b345c7be601ace.tar.gz Hyprland-47874f09f4d14703fe0c483a46b345c7be601ace.zip |
cmake: remove forceful ffi and wayland deps for asan
fixes #6050
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c334ab06..cfcaa686 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -130,8 +130,6 @@ if(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG) message(STATUS "Enabling ASan") target_link_libraries(Hyprland asan) - pkg_check_modules(ffidep REQUIRED IMPORTED_TARGET libffi) - target_link_libraries(Hyprland ${CMAKE_SOURCE_DIR}/libwayland-server.a PkgConfig::ffidep) target_compile_options(Hyprland PUBLIC -fsanitize=address) endif() |