CMakeLists.txt raw

   1  # Copyright (c) 2023-present The Limenka 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      $<$<BOOL:${USE_SQLITE}>:${CMAKE_CURRENT_LIST_DIR}/notifications.cpp>
  12      $<$<BOOL:${USE_SQLITE}>:${CMAKE_CURRENT_LIST_DIR}/scriptpubkeyman.cpp>
  13      spend.cpp
  14      wallet_bdb_parser.cpp
  15  )
  16  target_link_libraries(fuzz limenka_wallet)
  17