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 91389d9dd6ad7b84c7e9165ee8257d54d6f47cd3..3d3c3370ccdae640654c86baf7fc072aafd324b3 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 3efa299e5b1a686c2d8a3b818e1c3ac9d53c575d..c44587cf16ba62b1644cb20bac074572075a3d8e 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(
        '.'