Move minisketch cppflags out of the catch-all BITCOIN_INCLUDES and pass
them only where they are needed, which is to libbitcoin_node, and the
(fuzz) tests.
Similar to #25244.
Move minisketch cppflags out of the catch-all BITCOIN_INCLUDES and pass
them only where they are needed, which is to libbitcoin_node, and the
(fuzz) tests.
<!--e57a25ab6845829454e8d69fc972939a-->
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
<!--174a7506f384e20aa4161008e828411d-->
No conflicts as of last run.
22 | @@ -23,7 +23,7 @@ noinst_PROGRAMS = 23 | TESTS = 24 | BENCHMARKS = 25 | 26 | -BITCOIN_INCLUDES=-I$(builddir) -I$(srcdir)/$(MINISKETCH_INCLUDE_DIR_INT) -I$(srcdir)/secp256k1/include -I$(srcdir)/$(UNIVALUE_INCLUDE_DIR_INT) $(BOOST_CPPFLAGS) $(LEVELDB_CPPFLAGS) 27 | +BITCOIN_INCLUDES=-I$(builddir) -I$(srcdir)/secp256k1/include -I$(srcdir)/$(UNIVALUE_INCLUDE_DIR_INT) $(BOOST_CPPFLAGS) $(LEVELDB_CPPFLAGS)
Would it make sense to define MINISKETCH_INCLUDES instead of pasting this verbatim?