mirror of
git://nv-tegra.nvidia.com/tegra/gst-src/libgstnvcustomhelper.git
synced 2025-12-22 09:22:44 +03:00
58763dce79c555646e8fe2a3c82b99cd73e45726 - gst-nvcustomhelper/Makefile 1d05e15078ee65457a1e033a35ff53969b49dbae - gst-nvcustomhelper/LICENSE.libgstnvcustomhelper 6911bbbbdf879f293204b444447b7c248e713bba - gst-nvcustomhelper/gst-nvcustomevent.c 8f8291f190852841a376cfbf0b5d56f5965913cd - gst-nvcustomhelper/Makefile.public 39d54795c60e7436359259ede5ee6537a11b3fcc - gst-nvcustomhelper/README d27a433ddeaefb9f42d0312c23472514b0cd6a45 - gst-nvcustomhelper/gst-nvcustomevent.h Change-Id: I90c527be6c5be4b2ad7e68b47ec878a0f1176cd8
46 lines
1.3 KiB
Makefile
46 lines
1.3 KiB
Makefile
################################################################################
|
|
# SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
# SPDX-License-Identifier: LicenseRef-NvidiaProprietary
|
|
#
|
|
# NVIDIA CORPORATION, its affiliates and licensors retain all intellectual
|
|
# property and proprietary rights in and to this material, related
|
|
# documentation and any modifications thereto. Any use, reproduction,
|
|
# disclosure or distribution of this material and related documentation
|
|
# without an express license agreement from NVIDIA CORPORATION or
|
|
# its affiliates is strictly prohibited.
|
|
################################################################################
|
|
|
|
CC:= gcc
|
|
TARGET_NAME:= libgstnvcustomhelper.so
|
|
|
|
SRCS:= gst-nvcustomevent.c
|
|
|
|
RELEASE_SRC_DIR_NAME:=libs/gstnvcustomhelper
|
|
|
|
RELEASE_SRC_FILES:= Makefile.public=Makefile \
|
|
README=README \
|
|
gst-nvcustomevent.c=gst-nvcustomevent.c \
|
|
gst-nvcustomevent.h=gst-nvcustomevent.h
|
|
|
|
PUBLIC_HEADER_FILES:= gst-nvcustomevent.h=gst-nvcustomevent.h
|
|
|
|
INC_PATHS:= NV_ROOT_DIR/nvutils/gst-nvcustomhelper
|
|
|
|
LIBS:=
|
|
|
|
NEEDS_CUDA:=0
|
|
|
|
NEEDS_GST:=1
|
|
|
|
IS_GST_UTIL:=1
|
|
|
|
PACKAGE_BINARY_IN_DS:=1
|
|
|
|
CAN_PUBLIC_LINK:=1
|
|
|
|
BUILD_DIR:=../../deepstream/sdk/build/libs
|
|
|
|
IGNORE_DS_PACKAGE_NAMING=1
|
|
|
|
include ../../deepstream/sdk/Rules.mk
|