mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
Lagom: Fix oss-fuzz build error due to CMake typo
The OSS-Fuzz build was failing with the following error: /usr/bin/ld: cannot find -l{}
This commit is contained in:
parent
4d0f849654
commit
a4dc1eb330
Notes:
sideshowbarker
2024-07-18 07:44:15 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/a4dc1eb330d Pull-request: https://github.com/SerenityOS/serenity/pull/9115
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ function(add_simple_fuzzer name)
|
|||
|
||||
if (ENABLE_OSS_FUZZ)
|
||||
target_link_libraries(${name}
|
||||
PUBLIC {$ARGN} LagomCore)
|
||||
PUBLIC ${ARGN} LagomCore)
|
||||
else()
|
||||
target_compile_options(${name}
|
||||
PRIVATE $<$<CXX_COMPILER_ID:Clang>:-g -O1 -fsanitize=fuzzer>
|
||||
|
|
Loading…
Reference in a new issue