summaryrefslogtreecommitdiffstats
path: root/kwin/clients
diff options
context:
space:
mode:
Diffstat (limited to 'kwin/clients')
-rw-r--r--kwin/clients/PORTING2
-rw-r--r--kwin/clients/b2/CMakeLists.txt2
-rw-r--r--kwin/clients/b2/config/CMakeLists.txt2
-rw-r--r--kwin/clients/default/CMakeLists.txt2
-rw-r--r--kwin/clients/default/config/CMakeLists.txt2
-rw-r--r--kwin/clients/keramik/CMakeLists.txt2
-rw-r--r--kwin/clients/keramik/Makefile.am2
-rw-r--r--kwin/clients/keramik/config/CMakeLists.txt2
-rw-r--r--kwin/clients/kwmtheme/Makefile.am2
-rw-r--r--kwin/clients/kwmtheme/cli_installer/Makefile.am2
-rw-r--r--kwin/clients/laptop/CMakeLists.txt2
-rw-r--r--kwin/clients/modernsystem/CMakeLists.txt2
-rw-r--r--kwin/clients/modernsystem/config/CMakeLists.txt2
-rw-r--r--kwin/clients/plastik/CMakeLists.txt2
-rw-r--r--kwin/clients/plastik/config/CMakeLists.txt2
-rw-r--r--kwin/clients/quartz/CMakeLists.txt2
-rw-r--r--kwin/clients/quartz/config/CMakeLists.txt2
-rw-r--r--kwin/clients/redmond/CMakeLists.txt2
-rw-r--r--kwin/clients/web/CMakeLists.txt2
19 files changed, 19 insertions, 19 deletions
diff --git a/kwin/clients/PORTING b/kwin/clients/PORTING
index 9a5fb9f6b..f6233beb9 100644
--- a/kwin/clients/PORTING
+++ b/kwin/clients/PORTING
@@ -4,7 +4,7 @@ Also, the API is documented in the .h header files.
Makefile.am:
- Change kwin_ to kwin3_ (in LDFLAGS, LIBADD, kde_module_LTLIBRARIES, SOURCES).
- Make sure LDFLAGS contains $(KDE_PLUGIN) and -module .
-- Add -lkdecorations to LIBADD.
+- Add -ltdecorations to LIBADD.
- Do NOT rename the directory where the .desktop file is installed ( $(kde_datadir)/kwin/ ).
.desktop file:
diff --git a/kwin/clients/b2/CMakeLists.txt b/kwin/clients/b2/CMakeLists.txt
index 0031343d7..2395ecc84 100644
--- a/kwin/clients/b2/CMakeLists.txt
+++ b/kwin/clients/b2/CMakeLists.txt
@@ -32,6 +32,6 @@ install( FILES b2.desktop DESTINATION ${DATA_INSTALL_DIR}/kwin )
tde_add_kpart( kwin3_b2 AUTOMOC
SOURCES b2client.cpp
- LINK kdecorations-shared
+ LINK tdecorations-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/kwin/clients/b2/config/CMakeLists.txt b/kwin/clients/b2/config/CMakeLists.txt
index c260bc6d0..f319ac8f6 100644
--- a/kwin/clients/b2/config/CMakeLists.txt
+++ b/kwin/clients/b2/config/CMakeLists.txt
@@ -24,6 +24,6 @@ link_directories(
tde_add_kpart( kwin_b2_config AUTOMOC
SOURCES config.cpp
- LINK kdeui-shared
+ LINK tdeui-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/kwin/clients/default/CMakeLists.txt b/kwin/clients/default/CMakeLists.txt
index 1f539106c..5ad3d2def 100644
--- a/kwin/clients/default/CMakeLists.txt
+++ b/kwin/clients/default/CMakeLists.txt
@@ -27,6 +27,6 @@ link_directories(
tde_add_kpart( kwin3_default AUTOMOC
SOURCES kdedefault.cpp
- LINK kdecorations-shared kdecore-shared
+ LINK tdecorations-shared tdecore-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/kwin/clients/default/config/CMakeLists.txt b/kwin/clients/default/config/CMakeLists.txt
index 35492058f..4f6c76835 100644
--- a/kwin/clients/default/config/CMakeLists.txt
+++ b/kwin/clients/default/config/CMakeLists.txt
@@ -24,6 +24,6 @@ link_directories(
tde_add_kpart( kwin_default_config AUTOMOC
SOURCES config.cpp
- LINK kdeui-shared
+ LINK tdeui-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/kwin/clients/keramik/CMakeLists.txt b/kwin/clients/keramik/CMakeLists.txt
index 851f44a9a..e4da85e84 100644
--- a/kwin/clients/keramik/CMakeLists.txt
+++ b/kwin/clients/keramik/CMakeLists.txt
@@ -35,7 +35,7 @@ set_source_files_properties( keramik.cpp
tde_add_kpart( kwin3_keramik AUTOMOC
SOURCES keramik.cpp
- LINK kdecorations-shared kdeui-shared
+ LINK tdecorations-shared tdeui-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/kwin/clients/keramik/Makefile.am b/kwin/clients/keramik/Makefile.am
index 38f6f51da..8a04fe9e6 100644
--- a/kwin/clients/keramik/Makefile.am
+++ b/kwin/clients/keramik/Makefile.am
@@ -8,7 +8,7 @@ noinst_HEADERS = tiles.h
embedtool_SOURCES = embedtool.cpp
embedtool_LDADD = $(LIB_QT)
-embedtool_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
+embedtool_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
kde_module_LTLIBRARIES = kwin3_keramik.la
diff --git a/kwin/clients/keramik/config/CMakeLists.txt b/kwin/clients/keramik/config/CMakeLists.txt
index 3d5fb9e03..febfa0d44 100644
--- a/kwin/clients/keramik/config/CMakeLists.txt
+++ b/kwin/clients/keramik/config/CMakeLists.txt
@@ -24,6 +24,6 @@ link_directories(
tde_add_kpart( kwin_keramik_config AUTOMOC
SOURCES config.cpp keramikconfig.ui
- LINK kdeui-shared
+ LINK tdeui-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/kwin/clients/kwmtheme/Makefile.am b/kwin/clients/kwmtheme/Makefile.am
index f6c611180..a3a91080a 100644
--- a/kwin/clients/kwmtheme/Makefile.am
+++ b/kwin/clients/kwmtheme/Makefile.am
@@ -5,7 +5,7 @@ kde_module_LTLIBRARIES = kwin3_kwmtheme.la
kwin3_kwmtheme_la_SOURCES = kwmthemeclient.cpp
kwin3_kwmtheme_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module
-kwin3_kwmtheme_la_LIBADD = -lkdecorations
+kwin3_kwmtheme_la_LIBADD = -ltdecorations
METASOURCES = AUTO
noinst_HEADERS = kwmthemeclient.h
diff --git a/kwin/clients/kwmtheme/cli_installer/Makefile.am b/kwin/clients/kwmtheme/cli_installer/Makefile.am
index 89b661780..80033222d 100644
--- a/kwin/clients/kwmtheme/cli_installer/Makefile.am
+++ b/kwin/clients/kwmtheme/cli_installer/Makefile.am
@@ -10,7 +10,7 @@ bin_PROGRAMS = kwmtheme
kwmtheme_SOURCES = main.cpp
# the library search path.
-kwmtheme_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -lkdefx $(LIB_KIO) -lktexteditor
+kwmtheme_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_KDECORE) $(LIB_KDEUI) -ltdefx $(LIB_KIO) -lktexteditor
# the libraries to link against. Be aware of the order. First the libraries,
# that depend on the following ones.
diff --git a/kwin/clients/laptop/CMakeLists.txt b/kwin/clients/laptop/CMakeLists.txt
index b6e16e800..e4ae404c5 100644
--- a/kwin/clients/laptop/CMakeLists.txt
+++ b/kwin/clients/laptop/CMakeLists.txt
@@ -30,6 +30,6 @@ install( FILES laptop.desktop DESTINATION ${DATA_INSTALL_DIR}/kwin )
tde_add_kpart( kwin3_laptop AUTOMOC
SOURCES laptopclient.cpp
- LINK kdecorations-shared
+ LINK tdecorations-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/kwin/clients/modernsystem/CMakeLists.txt b/kwin/clients/modernsystem/CMakeLists.txt
index 8fbfec858..723ddffe1 100644
--- a/kwin/clients/modernsystem/CMakeLists.txt
+++ b/kwin/clients/modernsystem/CMakeLists.txt
@@ -31,6 +31,6 @@ install( FILES modernsystem.desktop DESTINATION ${DATA_INSTALL_DIR}/kwin )
tde_add_kpart( kwin3_modernsys
SOURCES modernsys.cpp
- LINK kdecorations-shared
+ LINK tdecorations-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/kwin/clients/modernsystem/config/CMakeLists.txt b/kwin/clients/modernsystem/config/CMakeLists.txt
index 7e644f0c9..e2468db33 100644
--- a/kwin/clients/modernsystem/config/CMakeLists.txt
+++ b/kwin/clients/modernsystem/config/CMakeLists.txt
@@ -24,7 +24,7 @@ link_directories(
tde_add_kpart( kwin_modernsys_config AUTOMOC
SOURCES config.cpp
- LINK kdeui-shared
+ LINK tdeui-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/kwin/clients/plastik/CMakeLists.txt b/kwin/clients/plastik/CMakeLists.txt
index da88e2ffa..cc9aaa347 100644
--- a/kwin/clients/plastik/CMakeLists.txt
+++ b/kwin/clients/plastik/CMakeLists.txt
@@ -34,6 +34,6 @@ install( FILES plastik.desktop DESTINATION ${DATA_INSTALL_DIR}/kwin )
tde_add_kpart( kwin3_plastik AUTOMOC
SOURCES plastik.cpp plastikclient.cpp plastikbutton.cpp misc.cpp
- LINK kdecorations-shared kdeui-shared
+ LINK tdecorations-shared tdeui-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/kwin/clients/plastik/config/CMakeLists.txt b/kwin/clients/plastik/config/CMakeLists.txt
index c5b34f368..4e3c2ac2b 100644
--- a/kwin/clients/plastik/config/CMakeLists.txt
+++ b/kwin/clients/plastik/config/CMakeLists.txt
@@ -28,6 +28,6 @@ install( FILES DESTINATION ${XDG_APPS_INSTALL_DIR} )
tde_add_kpart( kwin_plastik_config AUTOMOC
SOURCES config.cpp configdialog.ui
- LINK kdeui-shared
+ LINK tdeui-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/kwin/clients/quartz/CMakeLists.txt b/kwin/clients/quartz/CMakeLists.txt
index a4463067a..160a3cd52 100644
--- a/kwin/clients/quartz/CMakeLists.txt
+++ b/kwin/clients/quartz/CMakeLists.txt
@@ -32,6 +32,6 @@ install( FILES quartz.desktop DESTINATION ${DATA_INSTALL_DIR}/kwin )
tde_add_kpart( kwin3_quartz AUTOMOC
SOURCES quartz.cpp
- LINK kdecorations-shared kdeui-shared
+ LINK tdecorations-shared tdeui-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/kwin/clients/quartz/config/CMakeLists.txt b/kwin/clients/quartz/config/CMakeLists.txt
index 3b3ed6564..3142505c7 100644
--- a/kwin/clients/quartz/config/CMakeLists.txt
+++ b/kwin/clients/quartz/config/CMakeLists.txt
@@ -24,6 +24,6 @@ link_directories(
tde_add_kpart( kwin_quartz_config AUTOMOC
SOURCES config.cpp
- LINK kdeui-shared
+ LINK tdeui-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/kwin/clients/redmond/CMakeLists.txt b/kwin/clients/redmond/CMakeLists.txt
index 8a3bc7814..5be11e2f9 100644
--- a/kwin/clients/redmond/CMakeLists.txt
+++ b/kwin/clients/redmond/CMakeLists.txt
@@ -30,6 +30,6 @@ install( FILES redmond.desktop DESTINATION ${DATA_INSTALL_DIR}/kwin )
tde_add_kpart( kwin3_redmond AUTOMOC
SOURCES redmond.cpp
- LINK kdecorations-shared kdecore-shared
+ LINK tdecorations-shared tdecore-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/kwin/clients/web/CMakeLists.txt b/kwin/clients/web/CMakeLists.txt
index 9bb7de57f..6a6d1088d 100644
--- a/kwin/clients/web/CMakeLists.txt
+++ b/kwin/clients/web/CMakeLists.txt
@@ -29,6 +29,6 @@ install( FILES web.desktop DESTINATION ${DATA_INSTALL_DIR}/kwin )
tde_add_kpart( kwin3_web AUTOMOC
SOURCES Web.cpp WebButton.cpp
- LINK kdecorations-shared kdeui-shared
+ LINK tdecorations-shared tdeui-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)