blob: cdeb29ea23c55b10b313796f40a2f1b1af30bd8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
AM_CPPFLAGS = $(all_includes)
kde_module_LTLIBRARIES = kcm_displayconfig.la
kcm_displayconfig_la_SOURCES = displayconfig.cpp displayconfigbase.ui displayconfig.skel
kcm_displayconfig_la_LDFLAGS = $(all_libraries) -ltderandr -module -avoid-version -no-undefined
kcm_displayconfig_la_LIBADD = -ltdeui $(LIB_TDEIO) $(LIB_XRANDR)
METASOURCES = AUTO
noinst_HEADERS = displayconfig.h
messages: rc.cpp
$(XGETTEXT) *.cpp -o $(podir)/kcmdisplayconfig.pot
xdg_apps_DATA = displayconfig.desktop
|