forked from strukturag/libheif
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
169 lines (136 loc) · 4 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
cmake_minimum_required (VERSION 3.13)
project(libheif LANGUAGES C CXX VERSION 1.12.0.0)
# https://cmake.org/cmake/help/v3.1/policy/CMP0054.html
cmake_policy(SET CMP0054 NEW)
include(GNUInstallDirs)
# The version number.
set (PACKAGE_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
# Check for unistd.h
include (${CMAKE_ROOT}/Modules/CheckIncludeFile.cmake)
CHECK_INCLUDE_FILE(unistd.h HAVE_UNISTD_H)
if (HAVE_UNISTD_H)
add_definitions(-DHAVE_UNISTD_H)
endif()
if(NOT MSVC)
add_definitions(-Wall)
add_definitions(-Werror)
add_definitions(-Wsign-compare)
add_definitions(-Wconversion)
add_definitions(-Wno-sign-conversion)
add_definitions(-Wno-error=conversion)
add_definitions(-Wno-error=unused-parameter)
add_definitions(-Wno-error=deprecated-declarations)
endif()
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_CXX_VISIBILITY_PRESET hidden)
set(CMAKE_VISIBILITY_INLINES_HIDDEN 1)
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
# Create the compile command database for clang by default
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
option(BUILD_SHARED_LIBS "Build shared libraries" ON)
include(CheckCXXCompilerFlag)
CHECK_CXX_COMPILER_FLAG(-Wno-error=potentially-evaluated-expression has_potentially_evaluated_expression)
if (has_potentially_evaluated_expression)
add_definitions(-Wno-error=potentially-evaluated-expression)
endif()
LIST (APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/modules")
option(WITH_LIBDE265 "Build libde265 decoder" ON)
if (WITH_LIBDE265)
find_package(Libde265)
endif ()
option(WITH_X265 "Build x265 encoder" ON)
if (WITH_X265)
find_package(X265)
endif ()
option(WITH_AOM "Build aom encoder/decoder" ON)
if (WITH_AOM)
find_package(LibAOM)
endif()
option(WITH_RAV1E "Build rav1e encoder" ON)
if (WITH_RAV1E)
find_package(Rav1e)
endif ()
option(WITH_DAV1D "Build dav1d decoder" ON)
if (WITH_DAV1D)
find_package(Dav1d)
endif ()
if (LIBDE265_FOUND)
message("HEIF decoder, libde265: found")
else ()
message("HEIF decoder, libde265: not found")
endif ()
if (X265_FOUND)
message("HEIF encoder, x265: found")
else ()
message("HEIF encoder, x265: not found")
endif ()
if (AOM_ENCODER_FOUND)
message("AVIF encoder, aom: found")
else ()
message("AVIF encoder, aom: not found")
endif ()
if (AOM_DECODER_FOUND)
message("AVIF decoder, aom: found")
else ()
message("AVIF decoder, aom: not found")
endif ()
if (RAV1E_FOUND)
message("AVIF encoder, rav1e: found")
else ()
message("AVIF encoder, rav1e: not found")
endif ()
if (DAV1D_FOUND)
message("AVIF decoder, dav1d: found")
else ()
message("AVIF decoder, dav1d: not found")
endif ()
# Create libheif pkgconfig file
set(prefix ${CMAKE_INSTALL_PREFIX})
set(exec_prefix ${CMAKE_INSTALL_PREFIX})
set(libdir ${CMAKE_INSTALL_FULL_LIBDIR})
set(includedir ${CMAKE_INSTALL_FULL_INCLUDEDIR})
if (LIBDE265_FOUND)
list(APPEND REQUIRES_PRIVATE "libde265")
set(have_libde265 yes)
else()
set(have_libde265 no)
endif()
if (X265_FOUND)
list(APPEND REQUIRES_PRIVATE "x265")
set(have_x265 yes)
else()
set(have_x265 no)
endif()
if (AOM_DECODER_FOUND OR AOM_ENCODER_FOUND)
list(APPEND REQUIRES_PRIVATE "aom")
endif()
if (DAV1D_FOUND)
list(APPEND REQUIRES_PRIVATE "dav1d")
endif()
if (RAV1E_FOUND)
list(APPEND REQUIRES_PRIVATE "rav1e")
endif()
if (AOM_DECODER_FOUND OR DAV1D_FOUND)
set(have_avif_decoder yes)
else()
set(have_avif_decoder no)
endif()
if (AOM_ENCODER_FOUND OR RAV1E_FOUND)
set(have_avif_encoder yes)
else()
set(have_avif_encoder no)
endif()
list(JOIN REQUIRES_PRIVATE " " REQUIRES_PRIVATE)
set(VERSION ${PROJECT_VERSION})
configure_file(libheif.pc.in ${CMAKE_CURRENT_BINARY_DIR}/libheif.pc @ONLY)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libheif.pc
DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
option(WITH_EXAMPLES "Build examples" ON)
if(WITH_EXAMPLES)
add_subdirectory (examples)
endif()
add_subdirectory (libheif)
add_subdirectory (gdk-pixbuf)
add_subdirectory (gnome)