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  # Do not use generator expressions in test sources because the
   6  # SOURCES property is processed to gather test suite macros.
   7  target_sources(test_bitcoin
   8    PRIVATE
   9      ipc_tests.cpp
  10  )
  11  
  12  target_link_libraries(test_bitcoin bitcoin_ipc_test bitcoin_ipc)
  13