We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7b9183 commit 3a0f14bCopy full SHA for 3a0f14b
2 files changed
test/CMakeLists.txt
@@ -46,6 +46,9 @@ target_link_libraries(bitcoinqml_unit_tests
46
47
if(TARGET GTest::gmock)
48
target_link_libraries(bitcoinqml_unit_tests PRIVATE GTest::gmock)
49
+ if(TARGET bitcoin_common)
50
+ target_link_libraries(bitcoinqml_unit_tests PRIVATE bitcoin_common)
51
+ endif()
52
endif()
53
54
add_test(NAME bitcoinqml_unit_tests COMMAND bitcoinqml_unit_tests)
test/mocks/mocknode.h
@@ -6,6 +6,7 @@
6
#define BITCOIN_QML_TEST_MOCKS_MOCKNODE_H
7
8
#include <gmock/gmock.h>
9
+#include <net_processing.h>
10
#include <interfaces/handler.h>
11
#include <interfaces/node.h>
12
0 commit comments