1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
## Copyright (c) 2009 Openismus GmbH <http://www.openismus.com/>
##
## This file is part of gtkmm.
##
## gtkmm is free software: you can redistribute it and/or modify it
## under the terms of the GNU Lesser General Public License as published
## by the Free Software Foundation, either version 2.1 of the License,
## or (at your option) any later version.
##
## gtkmm is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
## See the GNU Lesser General Public License for more details.
##
## You should have received a copy of the GNU Lesser General Public License
## along with this library. If not, see <http://www.gnu.org/licenses/>.
AUTOMAKE_OPTIONS = subdir-objects
check_PROGRAMS = \
boxhelper/test \
child_widget/test \
child_widget2/test \
child_widget_managed/test \
delete_cpp_child/test \
dialog/test \
dialog_deletethis/test \
main_with_options/test \
menu_destruction/test \
property_notification/test \
refcount_dialog/test \
scrolledwindow/test \
wrap_existing/test
boxhelper_test_SOURCES = boxhelper/main.cc
child_widget_test_SOURCES = child_widget/main.cc \
child_widget/testwindow.cc \
child_widget/testwindow.h
child_widget2_test_SOURCES = child_widget2/main.cc
child_widget_managed_test_SOURCES = child_widget_managed/main.cc
delete_cpp_child_test_SOURCES = delete_cpp_child/main.cc
dialog_test_SOURCES = dialog/main.cc
dialog_deletethis_test_SOURCES = dialog_deletethis/main.cc
main_with_options_test_SOURCES = main_with_options/main.cc
menu_destruction_test_SOURCES = menu_destruction/main.cc
property_notification_test_SOURCES = property_notification/main.cc
refcount_dialog_test_SOURCES = refcount_dialog/main.cc
scrolledwindow_test_SOURCES = scrolledwindow/main.cc
wrap_existing_test_SOURCES = wrap_existing/main.cc
gdkmm_includes = -I$(top_builddir)/gdk $(if $(srcdir:.=),-I$(top_srcdir)/gdk)
gdkmm_ldadd = $(top_builddir)/gdk/gdkmm/libgdkmm-$(GDKMM_API_VERSION).la
gtkmm_includes = -I$(top_builddir)/gtk $(if $(srcdir:.=),-I$(top_srcdir)/gtk)
gtkmm_ldadd = $(top_builddir)/gtk/gtkmm/libgtkmm-$(GTKMM_API_VERSION).la
local_includes = -I$(top_builddir) $(gdkmm_includes) $(gtkmm_includes)
local_ldadd = $(gdkmm_ldadd) $(gtkmm_ldadd)
AM_CPPFLAGS = $(local_includes) $(GTHREAD_CFLAGS) $(GTKMM_CFLAGS)
AM_CXXFLAGS = $(GTKMM_WXXFLAGS)
LDADD = $(GTKMM_LIBS) $(local_ldadd)
|