From 75dc1b3fd711afa26f69f8244b64d2df9628fae4 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Fri, 3 Feb 2017 11:14:45 +0100 Subject: [PATCH] cmake: add ecore_input --- CMakeLists.txt | 1 + src/lib/ecore_input/CMakeLists.txt | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 src/lib/ecore_input/CMakeLists.txt 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 +)