de782ec37b
and it kept segfaulting because I wasn't releasing windows, and b) The plugins didn't want to resolve anything in the kwin executable, only to the other libs. I finally solved this by using -rdynamic in kwin's LDFLAGS, which I hope is okay ;-) svn path=/trunk/kdebase/kwin/; revision=37234
19 lines
443 B
Makefile
19 lines
443 B
Makefile
|
|
INCLUDES = $(all_includes)
|
|
LDFLAGS = $(all_libraries) $(KDE_RPATH) -rdynamic
|
|
|
|
SUBDIRS = pics clients
|
|
|
|
bin_PROGRAMS = kwin
|
|
|
|
kwin_SOURCES = atoms.cpp client.cpp main.cpp stdclient.cpp workspace.cpp tabbox.cpp options.cpp plugins.cpp
|
|
|
|
kwin_LDADD = $(LIB_KDECORE) $(LIB_KDEUI)
|
|
|
|
KDE_ICON = kwin
|
|
|
|
METASOURCES = AUTO
|
|
|
|
messages:
|
|
$(XGETTEXT) -C -ktranslate -kaliasLocal -ki18n -x $(includedir)/kde.pot *.h *.cpp && mv messages.po $(podir)/kwin.pot
|
|
|