CMakeLists.txt raw

   1  # Copyright (c) 2023-present The Bitcoin Core developers
   2  # Distributed under the MIT software license, see the accompanying
   3  # file COPYING or https://opensource.org/license/mit/.
   4  
   5  target_sources(fuzz
   6    PRIVATE
   7      coincontrol.cpp
   8      coinselection.cpp
   9      crypter.cpp
  10      fees.cpp
  11      scriptpubkeyman.cpp
  12      spend.cpp
  13      wallet_bdb_parser.cpp
  14  )
  15  target_link_libraries(fuzz bitcoin_wallet)
  16