From b8526d43ae9b8fdd05d8fbe603ea21d6a005f28a Mon Sep 17 00:00:00 2001 From: Jaeyun Date: Fri, 12 Apr 2019 16:06:52 +0900 Subject: [PATCH] [Build/C-Api] clean build script remove unnecessary dep declare and fix typo Signed-off-by: Jaeyun Jung --- tizen-api/capi-nnstreamer.pc.in | 12 ++++++------ tizen-api/include/tizen-api-private.h | 4 ++-- tizen-api/meson.build | 3 --- 3 files changed, 8 insertions(+), 11 deletions(-) diff --git a/tizen-api/capi-nnstreamer.pc.in b/tizen-api/capi-nnstreamer.pc.in index e450f7f..75d98fd 100644 --- a/tizen-api/capi-nnstreamer.pc.in +++ b/tizen-api/capi-nnstreamer.pc.in @@ -2,13 +2,13 @@ # Package Information for pkg-config prefix=@PREFIX@ -exec_prefix=/usr +exec_prefix=@PREFIX@ libdir=@LIB_INSTALL_DIR@ -includedir=/usr/include/nnstreamer +includedir=@INCLUDE_INSTALL_DIR@/nnstreamer -Name: @PC_NAME@ -Description: @PACKAGE_DESCRIPTION@ +Name: tizen-api-nnstreamer +Description: NNStreamer API for Tizen Version: @VERSION@ -Requires: @PC_REQUIRED@ -Libs: -L${libdir} @PC_LDFLAGS@ +Requires: +Libs: -L${libdir} Cflags: -I${includedir} diff --git a/tizen-api/include/tizen-api-private.h b/tizen-api/include/tizen-api-private.h index 9338813..57bf124 100644 --- a/tizen-api/include/tizen-api-private.h +++ b/tizen-api/include/tizen-api-private.h @@ -24,7 +24,7 @@ */ #ifndef __TIZEN_NNSTREAMER_API_PRIVATE_H__ -#define __TIZEN_NNSTREAMER_API_PRIVATE_H___ +#define __TIZEN_NNSTREAMER_API_PRIVATE_H__ #include #include @@ -129,4 +129,4 @@ typedef struct _nns_valve { #ifdef __cplusplus } #endif /* __cplusplus */ -#endif /*__TIZEN_NNSTREAMER_API_PRIVATE_H___*/ +#endif /*__TIZEN_NNSTREAMER_API_PRIVATE_H__*/ diff --git a/tizen-api/meson.build b/tizen-api/meson.build index b78f2b1..584603a 100644 --- a/tizen-api/meson.build +++ b/tizen-api/meson.build @@ -15,8 +15,6 @@ if meson.project_name() != 'nnstreamer' cc = meson.get_compiler('c') cxx = meson.get_compiler('cpp') - - gst_api_verision = '1.0' endif @@ -35,7 +33,6 @@ tizen_deps = [ capi_base_common_dep, dlog_dep ] -gst_app_dep = dependency('gstreamer-app-1.0') tizen_capi_lib = shared_library ('capi-nnstreamer', capi_main, -- 2.7.4