mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
It is split into - /libgnucash (for the non-gui bits) - /gnucash (for the gui) - /common (misc source files used by both) - /bindings (currently only holds python bindings) This is the first step in restructuring the code. It will need much more fine tuning later on.
27 lines
722 B
Makefile
27 lines
722 B
Makefile
noinst_LTLIBRARIES=libgncmod-test-engine.la
|
|
|
|
LDADD = \
|
|
${top_builddir}/libgnucash/gnc-module/libgnc-module.la \
|
|
../libgncmod-engine.la \
|
|
${GLIB_LIBS}
|
|
|
|
libgncmod_test_engine_la_SOURCES = gncmod-test-engine.c test-engine-stuff.cpp
|
|
libgncmod_test_engine_la_LDFLAGS = -module
|
|
libgncmod_test_engine_la_LIBADD = \
|
|
${top_builddir}/libgnucash/gnc-module/libgnc-module.la \
|
|
../libgncmod-engine.la \
|
|
${GLIB_LIBS}
|
|
|
|
noinst_HEADERS=test-engine-stuff.h test-engine-strings.h
|
|
|
|
AM_CPPFLAGS = \
|
|
-I${top_srcdir}/common \
|
|
-I${top_srcdir}/libgnucash/gnc-module \
|
|
-I${top_srcdir}/common/test-core \
|
|
-I${top_srcdir}/libgnucash/engine \
|
|
${GLIB_CFLAGS} \
|
|
${GUILE_CFLAGS} \
|
|
${BOOST_CPPFLAGS}
|
|
|
|
EXTRA_DIST = CMakeLists.txt
|