build: add ecore dependency 12/264112/1
authorSung-Jin Park <sj76.park@samsung.com>
Tue, 29 Jun 2021 09:33:56 +0000 (18:33 +0900)
committerSung-Jin Park <sj76.park@samsung.com>
Mon, 13 Sep 2021 12:14:15 +0000 (21:14 +0900)
Change-Id: I26c81efda110e62778d16601f836c34403537bb9
Signed-off-by: Sung-Jin Park <sj76.park@samsung.com>
packaging/mmifw.spec
src/meson.build

index 91389d9..3d3c337 100644 (file)
@@ -15,10 +15,10 @@ BuildRequires: pkgconfig(gio-2.0)
 BuildRequires: pkgconfig(glib-2.0)
 BuildRequires: pkgconfig(dlog)
 BuildRequires: pkgconfig(rpc-port)
+BuildRequires: pkgconfig(ecore)
 
 #Build dependencies for tests
 BuildRequires: pkgconfig(gmock)
-BuildRequires: pkgconfig(ecore)
 
 %description
 MMI(Multi-modal Interaction) Framework Library
index 3efa299..c44587c 100644 (file)
@@ -15,8 +15,16 @@ bundle_dep = dependency('bundle')
 dlog_dep = dependency('dlog')
 rpc_port_dep = dependency('rpc-port')
 libtzplatform_config_dep = dependency('libtzplatform-config')
+ecore_dep = dependency('ecore', method : 'pkg-config')
 
-mmifw_deps = [glib_dep, gio_dep, bundle_dep, dlog_dep, rpc_port_dep, libtzplatform_config_dep]
+mmifw_deps = [
+       ecore_dep,
+       glib_dep,
+       gio_dep,
+       bundle_dep,
+       dlog_dep,
+       rpc_port_dep,
+       libtzplatform_config_dep]
 
 mmifw_include_dirs = include_directories(
        '.'