-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCMakeLists.txt
98 lines (82 loc) · 2.63 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
# libolivecore
# Copyright (C) 2023 Olive Studios LLC
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
cmake_minimum_required(VERSION 3.13 FATAL_ERROR)
project(libolivecore VERSION 1.0.0 LANGUAGES CXX)
option(OLIVECORE_BUILD_TESTS ON)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
# Link avutil
find_package(FFMPEG 3.0 REQUIRED
COMPONENTS avutil
)
# Link Imath
find_package(Imath REQUIRED CONFIG)
# Link OpenGL
if(UNIX AND NOT APPLE AND NOT DEFINED OpenGL_GL_PREFERENCE)
set(OpenGL_GL_PREFERENCE LEGACY)
endif()
find_package(OpenGL REQUIRED)
add_library(olivecore
src/render/audioparams.cpp
src/render/samplebuffer.cpp
src/util/bezier.cpp
src/util/color.cpp
src/util/rational.cpp
src/util/stringutils.cpp
src/util/tests.cpp
src/util/timecodefunctions.cpp
src/util/timerange.cpp
src/util/value.cpp
)
target_include_directories(olivecore PRIVATE
${FFMPEG_INCLUDE_DIRS}
"${CMAKE_CURRENT_SOURCE_DIR}/include/olive/core"
)
target_link_libraries(olivecore PRIVATE
OpenGL::GL
Imath::Imath
FFMPEG::avutil
)
# Link OpenTimelineIO (optional)
find_package(OpenTimelineIO)
if (OpenTimelineIO_FOUND)
target_compile_definitions(olivecore PRIVATE USE_OTIO)
target_include_directories(olivecore PRIVATE ${OTIO_INCLUDE_DIRS})
target_link_libraries(olivecore PRIVATE ${OTIO_LIBRARIES})
else()
message(" OpenTimelineIO interchange will be disabled.")
endif()
install(TARGETS olivecore)
install(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/include/olive" DESTINATION "${CMAKE_INSTALL_PREFIX}/include")
if (OLIVECORE_BUILD_TESTS)
enable_testing()
function(make_test name)
add_executable(${name}
tests/${name}.cpp
)
target_link_libraries(${name} PRIVATE olivecore)
target_include_directories(${name} PRIVATE
"${CMAKE_CURRENT_SOURCE_DIR}/include/olive/core"
)
add_test(${name} ${name})
endfunction()
make_test(rational-test)
make_test(stringutils-test)
make_test(timecode-test)
make_test(timerange-test)
endif()