summaryrefslogtreecommitdiffstats
path: root/kcontrol/input
diff options
context:
space:
mode:
Diffstat (limited to 'kcontrol/input')
-rw-r--r--kcontrol/input/CMakeLists.txt68
-rw-r--r--kcontrol/input/core/CMakeLists.txt23
-rw-r--r--kcontrol/input/pics/CMakeLists.txt14
-rw-r--r--kcontrol/input/xcursor/CMakeLists.txt25
4 files changed, 130 insertions, 0 deletions
diff --git a/kcontrol/input/CMakeLists.txt b/kcontrol/input/CMakeLists.txt
new file mode 100644
index 000000000..94ddb9dad
--- /dev/null
+++ b/kcontrol/input/CMakeLists.txt
@@ -0,0 +1,68 @@
+#################################################
+#
+# (C) 2010-2011 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+if( WITH_XCURSOR )
+ add_subdirectory( xcursor )
+ include_directories( xcursor )
+else( )
+ add_subdirectory( core )
+ include_directories( core )
+endif( )
+
+add_subdirectory( pics )
+
+include_directories(
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_BINARY_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+link_directories(
+ ${TQT_LIBRARY_DIRS}
+)
+
+
+##### other data ################################
+
+install( FILES
+ mouse.desktop
+ DESTINATION ${XDG_APPS_INSTALL_DIR} )
+
+install( FILES
+ cursor_large_black.pcf.gz cursor_large_white.pcf.gz
+ cursor_small_white.pcf.gz
+ DESTINATION ${DATA_INSTALL_DIR}/kcminput )
+
+install( FILES
+ mouse_cursor_theme.upd
+ DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
+
+
+##### kcm_input (module) ########################
+
+tde_add_kpart( kcm_input AUTOMOC
+ SOURCES
+ mouse.cpp kmousedlg.ui main.cpp logitechmouse.cpp
+ logitechmouse_base.ui
+ LINK themepage-static kio-shared ${XCURSOR_LIBRARIES} ${LIBUSB_LIBRARIES}
+ DESTINATION ${PLUGIN_INSTALL_DIR}
+)
+
+
+##### kapplymousetheme (executable) #############
+
+tde_add_executable( kapplymousetheme
+ SOURCES
+ kapplymousetheme.cpp
+ LINK ${XCURSOR_LIBRARIES} X11
+ DESTINATION ${BIN_INSTALL_DIR}
+)
diff --git a/kcontrol/input/core/CMakeLists.txt b/kcontrol/input/core/CMakeLists.txt
new file mode 100644
index 000000000..264dadd0a
--- /dev/null
+++ b/kcontrol/input/core/CMakeLists.txt
@@ -0,0 +1,23 @@
+#################################################
+#
+# (C) 2010-2011 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include_directories(
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+
+##### themepage (static) ########################
+
+tde_add_library( themepage STATIC_PIC AUTOMOC
+ SOURCES themepage.cpp
+)
diff --git a/kcontrol/input/pics/CMakeLists.txt b/kcontrol/input/pics/CMakeLists.txt
new file mode 100644
index 000000000..69c246e4f
--- /dev/null
+++ b/kcontrol/input/pics/CMakeLists.txt
@@ -0,0 +1,14 @@
+#################################################
+#
+# (C) 2010-2011 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+install( FILES
+ mouse_rh.png mouse_lh.png
+ DESTINATION ${DATA_INSTALL_DIR}/kcminput/pics )
diff --git a/kcontrol/input/xcursor/CMakeLists.txt b/kcontrol/input/xcursor/CMakeLists.txt
new file mode 100644
index 000000000..1e2c3a3c3
--- /dev/null
+++ b/kcontrol/input/xcursor/CMakeLists.txt
@@ -0,0 +1,25 @@
+#################################################
+#
+# (C) 2010-2011 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include_directories(
+ ${CMAKE_CURRENT_BINARY_DIR}
+ ${CMAKE_BINARY_DIR}
+ ${TDE_INCLUDE_DIR}
+ ${TQT_INCLUDE_DIRS}
+)
+
+
+##### themepage (static) ########################
+
+tde_add_library( themepage STATIC_PIC AUTOMOC
+ SOURCES
+ themepage.cpp previewwidget.cpp
+)