diff options
Diffstat (limited to 'kdecore/tests/Makefile.am')
-rw-r--r-- | kdecore/tests/Makefile.am | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/kdecore/tests/Makefile.am b/kdecore/tests/Makefile.am new file mode 100644 index 000000000..3d05e1ac2 --- /dev/null +++ b/kdecore/tests/Makefile.am @@ -0,0 +1,86 @@ +# This file is part of the KDE libraries +# Copyright (C) 1996-1997 Matthias Kalle Dalheimer (kalle@kde.org) +# (C) 1997-1998 Stephan Kulow (coolo@kde.org) + +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Library General Public +# License as published by the Free Software Foundation; either +# version 2 of the License, or (at your option) any later version. + +# This library 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 +# Library General Public License for more details. + +# You should have received a copy of the GNU Library General Public License +# along with this library; see the file COPYING.LIB. If not, write to +# the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, +# Boston, MA 02110-1301, USA. + +INCLUDES = -I$(top_srcdir)/kdecore $(all_includes) + +AM_LDFLAGS = $(QT_LDFLAGS) $(X_LDFLAGS) $(KDE_RPATH) + +check_PROGRAMS = kconfigtestgui klocaletest kprocesstest ksimpleconfigtest \ + kstddirstest kurltest kuniqueapptest ktempfiletest krandomsequencetest \ + kdebugtest ksocktest kstringhandlertest kcmdlineargstest kapptest \ + kmemtest kidlservertest kidlclienttest dcopkonqtest kipctest \ + cplusplustest kiconloadertest kresolvertest kmdcodectest knotifytest \ + ksortablevaluelisttest krfcdatetest testqtargs kprociotest \ + kcharsetstest kcalendartest kmacroexpandertest kshelltest \ + kxerrorhandlertest startserviceby kstdacceltest kglobaltest ktimezonestest + +TESTS = kurltest kstdacceltest + +noinst_HEADERS = klocaletest.h kprocesstest.h KIDLTest.h \ + kipctest.h kprociotest.h + +METASOURCES = AUTO + +LDADD = ../libkdecore.la +kconfigtestgui_SOURCES = kconfigtestgui.cpp +kdebugtest_SOURCES = kdebugtest.cpp +klocaletest_SOURCES = klocaletest.cpp +#klocaletest2_SOURCES = klocaletest2.cpp klocale.cpp libintl.cpp kcatalogue.cpp +#kcatalogue_SOURCES = kcatalogue.cpp libintl.cpp +ksimpleconfigtest_SOURCES = ksimpleconfigtest.cpp +kurltest_SOURCES = kurltest.cpp +kstddirstest_SOURCES = kstddirstest.cpp +kprocesstest_SOURCES = kprocesstest.cpp +kuniqueapptest_SOURCES = kuniqueapptest.cpp +kapptest_SOURCES = kapptest.cpp +ksocktest_SOURCES = ksocktest.cpp +ktempfiletest_SOURCES = ktempfiletest.cpp +krandomsequencetest_SOURCES = krandomsequencetest.cpp +kstringhandlertest_SOURCES = kstringhandlertest.cpp +kcmdlineargstest_SOURCES = kcmdlineargstest.cpp +dcopkonqtest_SOURCES = dcopkonqtest.cpp +kmemtest_SOURCES = kmemtest.cpp +kidlservertest_SOURCES = KIDLTest.cpp KIDLTest.skel +kidlclienttest_SOURCES = KIDLTestClient.cpp KIDLTest.stub +$(srcdir)/KIDLTestClient.cpp: KIDLTest_stub.h +kipctest_SOURCES = kipctest.cpp +cplusplustest_SOURCES = cplusplustest.cpp +kiconloadertest_SOURCES = kiconloadertest.cpp +kresolvertest_SOURCES = kresolvertest.cpp +kmdcodectest_SOURCES = kmdcodectest.cpp +knotifytest_SOURCES = knotifytest.cpp +ksortablevaluelisttest_SOURCES = ksortablevaluelisttest.cpp +krfcdatetest_SOURCES = krfcdatetest.cpp +testqtargs_SOURCES = testqtargs.cpp +kprociotest_SOURCES = kprociotest.cpp +kcharsetstest_SOURCES = kcharsetstest.cpp +kcalendartest_SOURCES = kcalendartest.cpp +kmacroexpandertest_SOURCES = kmacroexpandertest.cpp +kshelltest_SOURCES = kshelltest.cpp +kxerrorhandlertest_SOURCES = kxerrorhandlertest.cpp +startserviceby_SOURCES = startserviceby.cpp +kstdacceltest_SOURCES = kstdacceltest.cpp +kglobaltest_SOURCES = kglobaltest.cpp +ktimezonestest_SOURCES = ktimezonestest.cpp + +check_LTLIBRARIES = kunittest_kconfig.la + +kunittest_kconfig_la_SOURCES = kconfigtest.cpp +kunittest_kconfig_la_LIBADD = $(LIB_KUNITTEST) +kunittest_kconfig_la_LDFLAGS = -module $(KDE_CHECK_PLUGIN) |