From 04e5f282f98e9938d4acc7fd16d4d309666b4cfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20D=C3=ADaz=20M=C3=A1s?= Date: Mon, 4 Apr 2022 08:40:56 +0200 Subject: [PATCH] Link fuzz app against std::filesystem libraries --- fuzz/CMakeLists.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/fuzz/CMakeLists.txt b/fuzz/CMakeLists.txt index 1f5dc68a..665c42dd 100644 --- a/fuzz/CMakeLists.txt +++ b/fuzz/CMakeLists.txt @@ -16,10 +16,7 @@ macro(fuzzer name) COMPILE_FLAGS "-fsanitize=fuzzer" LINK_FLAGS "-fsanitize=fuzzer") endif() - target_link_libraries(${name} - PRIVATE - exiv2lib - ) + target_link_libraries(${name} PRIVATE exiv2lib std::filesystem) endmacro() fuzzer(fuzz-read-print-write)