-
Notifications
You must be signed in to change notification settings - Fork 94
/
CMakeLists.txt
155 lines (130 loc) · 5.94 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
# Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of NVIDIA CORPORATION nor the names of its
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
cmake_minimum_required(VERSION 3.2)
project(NvPipe VERSION 1.0.0 LANGUAGES CXX)
SET(DEFAULT_BUILD_TYPE "Release")
if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
message(STATUS "Setting build type to '${DEFAULT_BUILD_TYPE}' as none was specified.")
set(CMAKE_BUILD_TYPE "${DEFAULT_BUILD_TYPE}" CACHE
STRING "Choose the type of build." FORCE)
# Set the possible values of build type for cmake-gui
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS
"Debug" "Release" "MinSizeRel" "RelWithDebInfo")
endif()
find_package(CUDA REQUIRED)
# Construct path to CUDA driver API lib (not provided by FindCUDA)
get_filename_component(CUDA_LIB_DIR ${CUDA_cudart_static_LIBRARY} DIRECTORY)
find_library(CUDA_LIB NAMES cuda HINTS ${CUDA_LIB_DIR})
# Set C++ standard
set(CMAKE_CXX_STANDARD 11)
# Options
option(NVPIPE_WITH_ENCODER "Enables the NvPipe encoding interface." ON)
option(NVPIPE_WITH_DECODER "Enables the NvPipe decoding interface." ON)
option(NVPIPE_WITH_OPENGL "Enables the NvPipe OpenGL interface." ON)
option(NVPIPE_BUILD_EXAMPLES "Builds the NvPipe example applications (requires both encoder and decoder)." ON)
# Header
configure_file(src/NvPipe.h.in include/NvPipe.h @ONLY)
include_directories(${CMAKE_CURRENT_BINARY_DIR}/include)
# NvPipe shared library
list(APPEND NVPIPE_SOURCES
src/NvPipe.cu
${NV_VIDEO_CODEC_SDK}/Samples/Utils/ColorSpace.cu
)
list(APPEND NVPIPE_LIBRARIES
${CMAKE_DL_LIBS}
${CUDA_LIBRARIES}
${CUDA_LIB}
nvidia-encode
)
if (NVPIPE_WITH_ENCODER)
list(APPEND NVPIPE_SOURCES
${NV_VIDEO_CODEC_SDK}/Samples/NvCodec/NvEncoder/NvEncoder.cpp
${NV_VIDEO_CODEC_SDK}/Samples/NvCodec/NvEncoder/NvEncoderCuda.cpp
)
endif()
if (NVPIPE_WITH_DECODER)
list(APPEND NVPIPE_SOURCES
${NV_VIDEO_CODEC_SDK}/Samples/NvCodec/NvDecoder/NvDecoder.cpp
)
list(APPEND NVPIPE_LIBRARIES
nvcuvid
)
if (WIN32)
if (CMAKE_SIZEOF_VOID_P EQUAL 8)
link_directories(${NV_VIDEO_CODEC_SDK}/Lib/x64)
elseif (CMAKE_SIZEOF_VOID_P EQUAL 4)
link_directories(${NV_VIDEO_CODEC_SDK}/Lib/Win32)
endif()
endif()
endif()
include(GNUInstallDirs)
cuda_add_library(${PROJECT_NAME} SHARED ${NVPIPE_SOURCES})
target_include_directories(${PROJECT_NAME} PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/include>
$<INSTALL_INTERFACE:$<INSTALL_PREFIX>/include>
)
target_include_directories(${PROJECT_NAME} PRIVATE
$<BUILD_INTERFACE: ${NV_VIDEO_CODEC_SDK}/Samples ${NV_VIDEO_CODEC_SDK}/Samples/NvCodec ${NV_VIDEO_CODEC_SDK}/include ${CUDA_INCLUDE_DIRS}>
)
target_link_libraries(${PROJECT_NAME} ${NVPIPE_LIBRARIES})
set_target_properties(${PROJECT_NAME} PROPERTIES
VERSION ${PROJECT_VERSION}
SOVERSION 1)
install(TARGETS ${PROJECT_NAME} EXPORT NvPipeConfig
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
install(FILES ${PROJECT_BINARY_DIR}/include/NvPipe.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
install(EXPORT NvPipeConfig DESTINATION share/NvPipe/cmake)
export(TARGETS ${PROJECT_NAME} FILE NvPipeConfig.cmake)
# Examples
if (NVPIPE_BUILD_EXAMPLES)
# Encode to / decode from file
add_executable(nvpExampleFile examples/file.cpp)
target_link_libraries(nvpExampleFile PRIVATE ${PROJECT_NAME})
if (NVPIPE_WITH_ENCODER AND NVPIPE_WITH_DECODER)
# Host/device memory comparison
add_executable(nvpExampleMemory examples/memory.cpp)
target_link_libraries(nvpExampleMemory PRIVATE ${PROJECT_NAME})
# Concurrent test
add_executable(nvpExampleConcurrent examples/concurrent.cpp)
target_link_libraries(nvpExampleConcurrent PRIVATE ${PROJECT_NAME})
# Lossless test
add_executable(nvpExampleLossless examples/lossless.cpp)
target_link_libraries(nvpExampleLossless PRIVATE ${PROJECT_NAME})
# EGL demo
if (NVPIPE_WITH_OPENGL)
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/examples/cmake)
find_package(EGL)
find_package(GLEW)
if (EGL_FOUND AND GLEW_FOUND)
add_executable(nvpExampleEGL examples/egl.cpp)
target_include_directories(nvpExampleEGL PRIVATE ${EGL_INCLUDE_DIR} ${GLEW_INCLUDE_DIR})
target_link_libraries(nvpExampleEGL PRIVATE ${PROJECT_NAME} ${EGL_LIBRARIES} ${GLEW_LIBRARIES})
endif()
endif()
endif()
endif()