diff --git a/CMakeLists.txt b/CMakeLists.txt index ff29bed9dc..8cae20d6e6 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 0000000000..4eec0988ab --- /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 +) +