From 2c361f9b0a92bcb339881ed9f85a224c75d9e2fa Mon Sep 17 00:00:00 2001 From: WerWolv Date: Tue, 1 Mar 2022 20:27:19 +0100 Subject: [PATCH] build: Don't bundle yara rules anymore because Microsoft Defender is a little cry baby --- cmake/build_helpers.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/build_helpers.cmake b/cmake/build_helpers.cmake index b2f850ae9..8fda5791d 100644 --- a/cmake/build_helpers.cmake +++ b/cmake/build_helpers.cmake @@ -292,7 +292,7 @@ function(downloadImHexPatternsFiles) FetchContent_Populate(imhex_patterns) - set(PATTERNS_FOLDERS_TO_INSTALL constants encodings includes patterns yara magic) + set(PATTERNS_FOLDERS_TO_INSTALL constants encodings includes patterns magic) foreach (FOLDER ${PATTERNS_FOLDERS_TO_INSTALL}) install(DIRECTORY "${imhex_patterns_SOURCE_DIR}/${FOLDER}" DESTINATION "./") endforeach()