Skip to content

Commit

Permalink
fixup! cmake: Add fuzzing options
Browse files Browse the repository at this point in the history
Add a missed source file.
See: bitcoin#28578
  • Loading branch information
hebasto committed Mar 29, 2024
1 parent 0766a70 commit 6da3579
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/test/fuzz/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,12 @@ target_link_libraries(fuzz
if(ENABLE_WALLET)
target_sources(fuzz
PRIVATE
${CMAKE_SOURCE_DIR}/src/wallet/test/fuzz/coincontrol.cpp
${CMAKE_SOURCE_DIR}/src/wallet/test/fuzz/coinselection.cpp
${CMAKE_SOURCE_DIR}/src/wallet/test/fuzz/fees.cpp
${CMAKE_SOURCE_DIR}/src/wallet/test/fuzz/parse_iso8601.cpp
$<$<BOOL:${USE_SQLITE}>:${CMAKE_SOURCE_DIR}/src/wallet/test/fuzz/notifications.cpp>
${PROJECT_SOURCE_DIR}/src/wallet/test/fuzz/coincontrol.cpp
${PROJECT_SOURCE_DIR}/src/wallet/test/fuzz/coinselection.cpp
${PROJECT_SOURCE_DIR}/src/wallet/test/fuzz/fees.cpp
${PROJECT_SOURCE_DIR}/src/wallet/test/fuzz/parse_iso8601.cpp
$<$<BOOL:${USE_SQLITE}>:${PROJECT_SOURCE_DIR}/src/wallet/test/fuzz/notifications.cpp>
$<$<BOOL:${USE_SQLITE}>:${PROJECT_SOURCE_DIR}/src/wallet/test/fuzz/scriptpubkeyman.cpp>
)
target_link_libraries(fuzz bitcoin_wallet)
endif()

0 comments on commit 6da3579

Please sign in to comment.