diff options
author | Jeongmo Yang <jm80.yang@samsung.com> | 2022-10-24 19:26:33 +0900 |
---|---|---|
committer | Jeongmo Yang <jm80.yang@samsung.com> | 2022-10-24 19:27:05 +0900 |
commit | f09b03472e7f275d322f26279c56ff003be8c1bb (patch) | |
tree | b4c386e8e9f64d0f4e9ad52ecb6854fefa7ed3f2 | |
parent | c083652f112a751972e2b88d54294a86271f86fc (diff) | |
download | camera-f09b03472e7f275d322f26279c56ff003be8c1bb.tar.gz camera-f09b03472e7f275d322f26279c56ff003be8c1bb.tar.bz2 camera-f09b03472e7f275d322f26279c56ff003be8c1bb.zip |
Remove unnecessary dependency - ecoreaccepted/tizen/unified/20221103.165733
[Version] 0.4.95
[Issue Type] Clean up
Change-Id: I4dc6caab6d1acc222334cb7fbb6099e0ecf00c3e
Signed-off-by: Jeongmo Yang <jm80.yang@samsung.com>
-rw-r--r-- | packaging/capi-media-camera.spec | 3 | ||||
-rw-r--r-- | test/CMakeLists.txt | 2 | ||||
-rw-r--r-- | test/camera_test_headed.c | 1 |
3 files changed, 2 insertions, 4 deletions
diff --git a/packaging/capi-media-camera.spec b/packaging/capi-media-camera.spec index 94be33d..8142d3c 100644 --- a/packaging/capi-media-camera.spec +++ b/packaging/capi-media-camera.spec @@ -1,6 +1,6 @@ Name: capi-media-camera Summary: A Camera API -Version: 0.4.94 +Version: 0.4.95 Release: 0 Group: Multimedia/API License: Apache-2.0 @@ -19,7 +19,6 @@ BuildRequires: pkgconfig(capi-media-tool) BuildRequires: pkgconfig(libtbm) BuildRequires: pkgconfig(appcore-efl) BuildRequires: pkgconfig(elementary) -BuildRequires: pkgconfig(ecore) BuildRequires: pkgconfig(evas) Requires(post): /sbin/ldconfig diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index bc0f09d..807a61d 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -9,7 +9,7 @@ SET(COMMON_SRC_NAME "camera_test.c") SET(fw_test_headed "${fw_test}-headed") INCLUDE(FindPkgConfig) -PKG_CHECK_MODULES(${fw_test_headed} REQUIRED elementary evas ecore appcore-efl libtbm) +PKG_CHECK_MODULES(${fw_test_headed} REQUIRED elementary evas appcore-efl libtbm) FOREACH(flag ${${fw_test_headed}_CFLAGS}) SET(EXTRA_CFLAGS_HEADED "${EXTRA_CFLAGS_HEADED} ${flag}") MESSAGE(${flag}) diff --git a/test/camera_test_headed.c b/test/camera_test_headed.c index a88255a..4dac241 100644 --- a/test/camera_test_headed.c +++ b/test/camera_test_headed.c @@ -18,7 +18,6 @@ * limitations under the License. * */ -#include <Ecore.h> #include <Elementary.h> #include <appcore-efl.h> #include "camera_test.h" |