-
Notifications
You must be signed in to change notification settings - Fork 484
/
CMakeLists.txt
101 lines (86 loc) · 3.82 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# SPDX-FileCopyrightText: Copyright (c) 2021-2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
# Setting values not set by user
function(check_variable_set variable_name default_value)
if (NOT DEFINED ${variable_name})
set(${variable_name} ${default_value} PARENT_SCOPE)
endif()
endfunction()
check_variable_set(PYTHON_MAJOR_VERSION 3)
check_variable_set(PYTHON_MINOR_VERSION 10)
check_variable_set(DS_PATH "/opt/nvidia/deepstream/deepstream")
if (DEFINED IS_SBSA)
message("IS_SBSA is set. Enabling definitions for ARM_SBSA")
add_compile_definitions(IS_SBSA)
endif()
# Checking values are allowed
macro(check_variable_allowed var_name var_list)
if(NOT ${var_name} IN_LIST ${var_list})
message(FATAL_ERROR "${var_name} must be one of ${${var_list}}")
endif()
endmacro()
set(PYTHON_MAJVERS_ALLOWED 3)
check_variable_allowed(PYTHON_MAJOR_VERSION PYTHON_MAJVERS_ALLOWED)
set(PYTHON_MINVERS_ALLOWED 10)
check_variable_allowed(PYTHON_MINOR_VERSION PYTHON_MINVERS_ALLOWED)
# Setting C++ values
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED True)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined")
# Setting python build versions
set(PYTHON_VERSION ${PYTHON_MAJOR_VERSION}.${PYTHON_MINOR_VERSION})
set(PIP_WHEEL pyds-1.1.11-py3-none-${PIP_PLATFORM}.whl)
# Describing pyds build
project(pyds DESCRIPTION "Python bindings for Deepstream")
add_compile_options(-Wall -Wextra -pedantic -O3)
include_directories(
include/
${DS_PATH}/sources/includes/
include/bind
include/nvds
3rdparty/pybind11/include/pybind11/
3rdparty/pybind11/include/
/usr/include/python${PYTHON_VERSION}
/usr/include/gstreamer-1.0
/usr/include/glib-2.0
/usr/lib/aarch64-linux-gnu/glib-2.0/include/
/usr/lib/x86_64-linux-gnu/glib-2.0/include
)
add_library(pyds SHARED src/pyds.cpp src/utils.cpp src/bindanalyticsmeta.cpp
src/bindfunctions.cpp src/bindgstnvdsmeta.cpp
src/bindmeta360.cpp src/bindnvbufsurface.cpp src/bindnvdsinfer.cpp
src/bindnvdsmeta.cpp src/bindnvosd.cpp src/bindopticalflow.cpp
src/bindschema.cpp src/bindtrackermeta.cpp src/custom_binding/bindcustom.cpp)
set_target_properties(pyds PROPERTIES PREFIX "")
set_target_properties(pyds PROPERTIES OUTPUT_NAME "pyds")
set(PYTHON_LIB python${PYTHON_VERSION})
target_link_libraries(pyds pthread dl ${PYTHON_LIB} gstreamer-1.0 glib-2.0)
# Checking deepstream shared libraries and linking them
function(add_ds_lib libname)
set(libpath "${DS_PATH}/lib/lib${libname}.so")
if(NOT EXISTS ${libpath})
message(FATAL_ERROR "Missing lib${libname}.so at ${libpath}\n"
"please make sure that deepstream is installed")
endif()
add_library(${libname} SHARED IMPORTED)
set_target_properties(${libname} PROPERTIES
IMPORTED_LOCATION ${libpath})
target_link_libraries(pyds ${libname})
endfunction()
foreach(nvds_lib nvds_osd nvds_meta nvds_infer nvdsgst_meta nvbufsurface nvbufsurftransform nvdsgst_helper nvdsgst_customhelper nvds_batch_jpegenc)
add_ds_lib(${nvds_lib})
endforeach()