diff options
author | fanquake <fanquake@gmail.com> | 2022-09-09 17:55:21 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-09-13 17:15:17 +0100 |
commit | 12de8f6262e9e74eb3c1a1c46070f7bc6a4cdac6 (patch) | |
tree | e08dc02119add2920b6061234ec852cd02575d1d /src/Makefile.qttest.include | |
parent | 29d540b7ada890dd588c4825d40c27c5e6f20061 (diff) |
build: extract $(BOOST_CPPFLAGS) from $(BITCOIN_INCLUDES)
This leaves $(BITCOIN_INCLUDES) as internal dependencies, and gives
finer control over Boost includes.
Diffstat (limited to 'src/Makefile.qttest.include')
-rw-r--r-- | src/Makefile.qttest.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.qttest.include b/src/Makefile.qttest.include index fa822f2954..89c659d4b9 100644 --- a/src/Makefile.qttest.include +++ b/src/Makefile.qttest.include @@ -27,7 +27,7 @@ TEST_QT_H = \ qt/test/wallettests.h qt_test_test_bitcoin_qt_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(BITCOIN_QT_INCLUDES) \ - $(QT_INCLUDES) $(QT_TEST_INCLUDES) + $(QT_INCLUDES) $(QT_TEST_INCLUDES) $(BOOST_CPPFLAGS) qt_test_test_bitcoin_qt_SOURCES = \ init/bitcoin-qt.cpp \ |