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
20 lines
382 B
Makefile
20 lines
382 B
Makefile
|
|
INCLUDES = $(all_includes)
|
|
|
|
lib_LTLIBRARIES = libkwinsystem.la
|
|
|
|
libkwinsystem_la_SOURCES = systemclient.cpp
|
|
|
|
METASOURCES = AUTO
|
|
noinst_HEADERS = systemclient.h
|
|
|
|
lnkdir = $(kde_datadir)/kwin/
|
|
lnk_DATA = system.desktop
|
|
|
|
EXTRA_DIST = $(lnk_DATA)
|
|
|
|
libkwinsystem_la_LDFLAGS = $(all_libraries) -version-info 1:0:0 -module
|
|
|
|
###KMAKE-start (don't edit or delete this block)
|
|
|
|
###KMAKE-end
|