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 +)