mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-25 06:00:08 +01:00
Up to now, the "include" directory contained (only) header files that were used project-wide by libs, core, clients, et al. Since the directory now also contains a non-header file, the "include" name is misleading. Instead of adding yet another directory that is project-wide, with non-header-only content, rename the "include" directory to "shared".
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
if ENABLE_TESTS
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/shared \
|
|
-I$(top_builddir)/shared \
|
|
-I$(top_srcdir)/libnm \
|
|
-I$(top_builddir)/libnm \
|
|
-I$(top_srcdir)/libnm-core \
|
|
-I$(top_builddir)/libnm-core \
|
|
-DNETWORKMANAGER_COMPILATION=NM_NETWORKMANAGER_COMPILATION_LIB \
|
|
-DNM_VERSION_MAX_ALLOWED=NM_VERSION_NEXT_STABLE \
|
|
-DTEST_NM_SERVICE=\"$(abs_top_srcdir)/tools/test-networkmanager-service.py\" \
|
|
$(GLIB_CFLAGS)
|
|
|
|
LDADD = \
|
|
$(top_builddir)/libnm/libnm.la \
|
|
$(GLIB_LIBS)
|
|
|
|
noinst_PROGRAMS = $(TESTS)
|
|
|
|
if WITH_VALGRIND
|
|
@VALGRIND_RULES@ --launch-dbus
|
|
else
|
|
LOG_COMPILER = $(srcdir)/libnm-test-launch.sh
|
|
endif
|
|
TESTS = test-nm-client test-remote-settings-client test-secret-agent
|
|
|
|
test_nm_client_SOURCES = \
|
|
$(top_builddir)/shared/nm-test-utils-impl.c \
|
|
$(top_builddir)/shared/nm-test-libnm-utils.h \
|
|
test-nm-client.c
|
|
|
|
test_remote_settings_client_SOURCES = \
|
|
$(top_builddir)/shared/nm-test-utils-impl.c \
|
|
$(top_builddir)/shared/nm-test-libnm-utils.h \
|
|
test-remote-settings-client.c
|
|
|
|
test_secret_agent_SOURCES = \
|
|
$(top_builddir)/shared/nm-test-utils-impl.c \
|
|
$(top_builddir)/shared/nm-test-libnm-utils.h \
|
|
test-secret-agent.c
|
|
endif
|
|
|
|
EXTRA_DIST = libnm-test-launch.sh
|