barbieri pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=5fcdfa96aac5fbf3b6a16c3180ea59dcc9dd8c7c
commit 5fcdfa96aac5fbf3b6a16c3180ea59dcc9dd8c7c Author: Gustavo Sverzut Barbieri <[email protected]> Date: Thu Feb 2 14:43:40 2017 -0200 cmake: add ecore_ipc. --- CMakeLists.txt | 1 + src/lib/ecore_ipc/CMakeLists.txt | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ff29bed..8cae20d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,6 +46,7 @@ EFL_LIB(emile) EFL_LIB(eet) EFL_LIB(ecore) EFL_LIB(ecore_con) +EFL_LIB(ecore_ipc) EFL_LIB(eldbus) EFL_LIB(embryo) EFL_LIB(ector) diff --git a/src/lib/ecore_ipc/CMakeLists.txt b/src/lib/ecore_ipc/CMakeLists.txt new file mode 100644 index 0000000..4eec098 --- /dev/null +++ b/src/lib/ecore_ipc/CMakeLists.txt @@ -0,0 +1,19 @@ +set(DESCRIPTION "E core library, IPC module") + +set(LIBRARIES + ecore + ecore_con + efl + eina + eo +) + +set(PUBLIC_HEADERS + Ecore_Ipc.h +) + +set(SOURCES + ecore_ipc.c + ecore_ipc_private.h +) + --
