-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCMakeLists.txt
57 lines (46 loc) · 1.67 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
cmake_minimum_required(VERSION 3.16)
project(mpeghdec LANGUAGES CXX)
set (CMAKE_CXX_STANDARD 11)
# Set output directories
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
# Define dependencies
include(FetchContent)
# ilo from 2023-05-30
FetchContent_Declare(
ilo
GIT_REPOSITORY https://github.com/Fraunhofer-IIS/ilo.git
GIT_TAG r1.0.0
)
# mmtisobmff from 2023-05-30
FetchContent_Declare(
mmtisobmff
GIT_REPOSITORY https://github.com/Fraunhofer-IIS/mmtisobmff.git
GIT_TAG r1.0.0
)
get_directory_property(parentDir PARENT_DIRECTORY)
# Set either of the two variables to OFF in case not both functionalities are required:
set(mpeghdec_BUILD_DECODER ON CACHE BOOL "Build MPEG-H decoder functionality")
set(mpeghdec_BUILD_UIMANAGER ON CACHE BOOL "Build MPEG-H UI manager functionality")
mark_as_advanced(mpeghdec_BUILD_DECODER mpeghdec_BUILD_UIMANAGER)
if(NOT mpeghdec_BUILD_DECODER AND NOT mpeghdec_BUILD_UIMANAGER)
message(SEND_ERROR "At least one of \"mpeghdec_BUILD_DECODER\" or \"mpeghdec_BUILD_UIMANAGER\" needs to be enabled!")
endif()
# Only enable building binaries by default if project is top-level
if(parentDir)
set(mpeghdec_BUILD_BINARIES OFF CACHE BOOL "Build demo binaries")
else()
set(mpeghdec_BUILD_BINARIES ON CACHE BOOL "Build demo binaries")
endif()
set(mpeghdec_BUILD_DOC OFF CACHE BOOL "Build mpeghdec documentation")
# Add libraries
add_subdirectory(src)
# Add binaries
if(mpeghdec_BUILD_BINARIES)
add_subdirectory(demo)
endif()
# Add documentation
if(mpeghdec_BUILD_DOC)
add_subdirectory(doc)
endif()