summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hollerbach <marcel-hollerbach@t-online.de>2017-02-03 11:14:45 +0100
committerMarcel Hollerbach <marcel-hollerbach@t-online.de>2017-02-03 11:14:45 +0100
commit75dc1b3fd711afa26f69f8244b64d2df9628fae4 (patch)
tree19e41ee1572da965d71480f39a33835e40d58599
parent3c0fe3ca3cda11a15e5652f8a6c0109d148d8fb6 (diff)
downloadefl-75dc1b3fd711afa26f69f8244b64d2df9628fae4.tar.gz
cmake: add ecore_input
-rw-r--r--CMakeLists.txt1
-rw-r--r--src/lib/ecore_input/CMakeLists.txt22
2 files changed, 23 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1565013836..f57dfc7899 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -52,6 +52,7 @@ EFL_LIB(eldbus)
EFL_LIB(embryo)
EFL_LIB(ector)
EFL_LIB(eeze)
+EFL_LIB(ecore_input)
EFL_OPTIONS_SUMMARY()
diff --git a/src/lib/ecore_input/CMakeLists.txt b/src/lib/ecore_input/CMakeLists.txt
new file mode 100644
index 0000000000..c9f20c7b9a
--- /dev/null
+++ b/src/lib/ecore_input/CMakeLists.txt
@@ -0,0 +1,22 @@
+set(PUBLIC_LIBRARIES
+ eina
+ eo
+)
+
+set(LIBRARIES
+ ecore
+ efl
+ eeze
+)
+
+set(PUBLIC_HEADERS
+ Ecore_Input.h
+)
+
+set(SOURCES
+ ecore_input.c
+ ecore_input_compose.c
+ ecore_input_compose.h
+ ecore_input_joystick.c
+ ecore_input_private.h
+)