summaryrefslogtreecommitdiffstats
path: root/src/input/CMakeLists.txt
diff options
context:
space:
mode:
authorSebastien Braun2010-10-04 00:22:14 +0200
committerSebastien Braun2010-10-05 18:15:48 +0200
commit266eb5fb14c07e67aa211a5860e9abf3009136e3 (patch)
tree9eeb8b159edf6e83880c056f1177cebec2ad354c /src/input/CMakeLists.txt
parentDefect #715, apply patch by Sébastien (diff)
downloadpvs-266eb5fb14c07e67aa211a5860e9abf3009136e3.tar.gz
pvs-266eb5fb14c07e67aa211a5860e9abf3009136e3.tar.xz
pvs-266eb5fb14c07e67aa211a5860e9abf3009136e3.zip
Implement first version of basic input event support
Diffstat (limited to 'src/input/CMakeLists.txt')
-rw-r--r--src/input/CMakeLists.txt19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/input/CMakeLists.txt b/src/input/CMakeLists.txt
new file mode 100644
index 0000000..aa52ec3
--- /dev/null
+++ b/src/input/CMakeLists.txt
@@ -0,0 +1,19 @@
+INCLUDE(${QT_USE_FILE})
+
+SET(pvsinput_SRCS
+ inputEvent.cpp
+ )
+
+IF(UNIX)
+ list(APPEND pvsinput_SRCS
+ x11InputUtils.cpp
+ x11FakeKeyboardHandler.cpp
+ x11FakeMouseHandler.cpp)
+ENDIF()
+
+ADD_LIBRARY(
+ pvsinput
+ STATIC
+ ${pvsinput_HDRS}
+ ${pvsinput_SRCS}
+)