blob: 81619f8e132dd97aa9834d7622f7fdb3bab6728b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
noinst_HEADERS = test.h
# let automoc handle all of the meta source files (moc)
METASOURCES = AUTO
noinst_PROGRAMS = propertytest
propertytest_SOURCES = main.cpp test.cpp
propertytest_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
propertytest_LDADD = $(LIB_KOPROPERTY)
# this is where the shell's XML-GUI resource file goes
#shellrcdir = $(kde_datadir)/test
#shellrc_DATA = testui.rc
INCLUDES= $(KOPROPERTY_INCLUDES) $(KOFFICE_INCLUDES) $(all_includes)
|