Browse Source

build: build qt tests after qt libs/executable

Autotools defaults to a depth-first recursion which causes the qt tests
to be built before the executables and libraries.

This is inconvenient as make needs to be called twice to make sure the
tests are up to date after changing a source file.

Update the Makefile.am to change this order.
0.10
Wladimir J. van der Laan 11 years ago
parent
commit
5c80b9a7fb
  1. 4
      src/qt/Makefile.am

4
src/qt/Makefile.am

@ -7,8 +7,8 @@ AM_CPPFLAGS += -I$(top_srcdir)/src \ @@ -7,8 +7,8 @@ AM_CPPFLAGS += -I$(top_srcdir)/src \
$(QR_CFLAGS)
bin_PROGRAMS = bitcoin-qt
noinst_LIBRARIES = libbitcoinqt.a
SUBDIRS = $(BUILD_TEST_QT)
DIST_SUBDIRS = test
SUBDIRS = . $(BUILD_TEST_QT)
DIST_SUBDIRS = . test
# bitcoin qt core #
QT_TS = \

Loading…
Cancel
Save