diff options
author | qinxialei <xialeiqin@gmail.com> | 2020-10-29 11:26:59 +0800 |
---|---|---|
committer | qinxialei <xialeiqin@gmail.com> | 2020-10-29 11:26:59 +0800 |
commit | e8d277081293b6fb2a5d469616baaa7a06f52496 (patch) | |
tree | 1179bb07d3927d1837d4a90bd81b2034c4c696a9 /cmake | |
download | libgav1-e8d277081293b6fb2a5d469616baaa7a06f52496.tar.gz libgav1-e8d277081293b6fb2a5d469616baaa7a06f52496.tar.bz2 libgav1-e8d277081293b6fb2a5d469616baaa7a06f52496.zip |
Import Upstream version 0.16.0
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/libgav1-config.cmake.template | 2 | ||||
-rw-r--r-- | cmake/libgav1.pc.template | 11 | ||||
-rw-r--r-- | cmake/libgav1_build_definitions.cmake | 150 | ||||
-rw-r--r-- | cmake/libgav1_cpu_detection.cmake | 49 | ||||
-rw-r--r-- | cmake/libgav1_flags.cmake | 251 | ||||
-rw-r--r-- | cmake/libgav1_helpers.cmake | 134 | ||||
-rw-r--r-- | cmake/libgav1_install.cmake | 60 | ||||
-rw-r--r-- | cmake/libgav1_intrinsics.cmake | 135 | ||||
-rw-r--r-- | cmake/libgav1_options.cmake | 55 | ||||
-rw-r--r-- | cmake/libgav1_sanitizer.cmake | 45 | ||||
-rw-r--r-- | cmake/libgav1_targets.cmake | 347 | ||||
-rw-r--r-- | cmake/libgav1_variables.cmake | 78 | ||||
-rw-r--r-- | cmake/toolchains/aarch64-linux-gnu.cmake | 28 | ||||
-rw-r--r-- | cmake/toolchains/android.cmake | 53 | ||||
-rw-r--r-- | cmake/toolchains/arm-linux-gnueabihf.cmake | 29 |
15 files changed, 1427 insertions, 0 deletions
diff --git a/cmake/libgav1-config.cmake.template b/cmake/libgav1-config.cmake.template new file mode 100644 index 0000000..dc253d3 --- /dev/null +++ b/cmake/libgav1-config.cmake.template @@ -0,0 +1,2 @@ +set(LIBGAV1_INCLUDE_DIRS "@LIBGAV1_INCLUDE_DIRS@") +set(LIBGAV1_LIBRARIES "gav1") diff --git a/cmake/libgav1.pc.template b/cmake/libgav1.pc.template new file mode 100644 index 0000000..c571a43 --- /dev/null +++ b/cmake/libgav1.pc.template @@ -0,0 +1,11 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: @PROJECT_NAME@ +Description: AV1 decoder library (@LIBGAV1_MAX_BITDEPTH@-bit). +Version: @LIBGAV1_VERSION@ +Cflags: -I${includedir} +Libs: -L${libdir} -lgav1 +Libs.private: @CMAKE_THREAD_LIBS_INIT@ diff --git a/cmake/libgav1_build_definitions.cmake b/cmake/libgav1_build_definitions.cmake new file mode 100644 index 0000000..b170e7e --- /dev/null +++ b/cmake/libgav1_build_definitions.cmake @@ -0,0 +1,150 @@ +# Copyright 2019 The libgav1 Authors +# +# 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. + +if(LIBGAV1_CMAKE_LIBGAV1_BUILD_DEFINITIONS_CMAKE_) + return() +endif() # LIBGAV1_CMAKE_LIBGAV1_BUILD_DEFINITIONS_CMAKE_ +set(LIBGAV1_CMAKE_LIBGAV1_BUILD_DEFINITIONS_CMAKE_ 1) + +macro(libgav1_set_build_definitions) + string(TOLOWER "${CMAKE_BUILD_TYPE}" build_type_lowercase) + + libgav1_load_version_info() + set(LIBGAV1_SOVERSION 0) + + list(APPEND libgav1_include_paths "${libgav1_root}" "${libgav1_root}/src" + "${libgav1_build}" "${libgav1_root}/third_party/abseil-cpp") + list(APPEND libgav1_gtest_include_paths + "third_party/googletest/googlemock/include" + "third_party/googletest/googletest/include" + "third_party/googletest/googletest") + list(APPEND libgav1_test_include_paths ${libgav1_include_paths} + ${libgav1_gtest_include_paths}) + list(APPEND libgav1_defines "LIBGAV1_CMAKE=1" + "LIBGAV1_FLAGS_SRCDIR=\"${libgav1_root}\"" + "LIBGAV1_FLAGS_TMPDIR=\"/tmp\"") + + if(MSVC OR WIN32) + list(APPEND libgav1_defines "_CRT_SECURE_NO_DEPRECATE=1" "NOMINMAX=1") + endif() + + if(ANDROID) + if(CMAKE_ANDROID_ARCH_ABI STREQUAL "armeabi-v7a") + set(CMAKE_ANDROID_ARM_MODE ON) + endif() + + if(build_type_lowercase MATCHES "rel") + list(APPEND libgav1_base_cxx_flags "-fno-stack-protector") + endif() + endif() + + list(APPEND libgav1_base_cxx_flags "-Wall" "-Wextra" "-Wmissing-declarations" + "-Wno-sign-compare" "-fvisibility=hidden" + "-fvisibility-inlines-hidden") + + if(BUILD_SHARED_LIBS) + set(CMAKE_POSITION_INDEPENDENT_CODE ON) + set(libgav1_dependency libgav1_shared) + else() + set(libgav1_dependency libgav1_static) + endif() + + list(APPEND libgav1_clang_cxx_flags "-Wextra-semi" "-Wmissing-prototypes" + "-Wshorten-64-to-32") + + if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang") + if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "6") + # Quiet warnings in copy-list-initialization where {} elision has always + # been allowed. + list(APPEND libgav1_clang_cxx_flags "-Wno-missing-braces") + endif() + if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 8) + list(APPEND libgav1_clang_cxx_flags "-Wextra-semi-stmt") + endif() + endif() + + if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") + if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "7") + # Quiet warnings due to potential snprintf() truncation in threadpool.cc. + list(APPEND libgav1_base_cxx_flags "-Wno-format-truncation") + + if(CMAKE_SYSTEM_PROCESSOR STREQUAL "armv7") + # Quiet gcc 6 vs 7 abi warnings: + # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=77728 + list(APPEND libgav1_base_cxx_flags "-Wno-psabi") + list(APPEND ABSL_GCC_FLAGS "-Wno-psabi") + endif() + endif() + endif() + + if(build_type_lowercase MATCHES "rel") + # TODO(tomfinegan): this value is only a concern for the core library and + # can be made smaller if the test targets are avoided. + list(APPEND libgav1_base_cxx_flags "-Wstack-usage=196608") + endif() + + list(APPEND libgav1_msvc_cxx_flags + # Warning level 3. + "/W3" + # Disable warning C4018: + # '<comparison operator>' signed/unsigned mismatch + "/wd4018" + # Disable warning C4244: + # 'argument': conversion from '<double/int>' to + # '<float/smaller int type>', possible loss of data + "/wd4244" + # Disable warning C4267: + # '=': conversion from '<double/int>' to + # '<float/smaller int type>', possible loss of data + "/wd4267" + # Disable warning C4309: + # 'argument': truncation of constant value + "/wd4309" + # Disable warning C4551: + # function call missing argument list + "/wd4551") + + if(BUILD_SHARED_LIBS) + list(APPEND libgav1_msvc_cxx_flags + # Disable warning C4251: + # 'libgav1::DecoderImpl class member' needs to have + # dll-interface to be used by clients of class + # 'libgav1::Decoder'. + "/wd4251") + endif() + + if(NOT LIBGAV1_MAX_BITDEPTH) + set(LIBGAV1_MAX_BITDEPTH 10) + elseif(NOT LIBGAV1_MAX_BITDEPTH EQUAL 8 AND NOT LIBGAV1_MAX_BITDEPTH EQUAL 10) + libgav1_die("LIBGAV1_MAX_BITDEPTH must be 8 or 10.") + endif() + + list(APPEND libgav1_defines "LIBGAV1_MAX_BITDEPTH=${LIBGAV1_MAX_BITDEPTH}") + + if(DEFINED LIBGAV1_THREADPOOL_USE_STD_MUTEX) + if(NOT LIBGAV1_THREADPOOL_USE_STD_MUTEX EQUAL 0 + AND NOT LIBGAV1_THREADPOOL_USE_STD_MUTEX EQUAL 1) + libgav1_die("LIBGAV1_THREADPOOL_USE_STD_MUTEX must be 0 or 1.") + endif() + + list(APPEND libgav1_defines + "LIBGAV1_THREADPOOL_USE_STD_MUTEX=${LIBGAV1_THREADPOOL_USE_STD_MUTEX}") + endif() + + # Source file names ending in these suffixes will have the appropriate + # compiler flags added to their compile commands to enable intrinsics. + set(libgav1_avx2_source_file_suffix "avx2.cc") + set(libgav1_neon_source_file_suffix "neon.cc") + set(libgav1_sse4_source_file_suffix "sse4.cc") +endmacro() diff --git a/cmake/libgav1_cpu_detection.cmake b/cmake/libgav1_cpu_detection.cmake new file mode 100644 index 0000000..e17e27c --- /dev/null +++ b/cmake/libgav1_cpu_detection.cmake @@ -0,0 +1,49 @@ +# Copyright 2019 The libgav1 Authors +# +# 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. + +if(LIBGAV1_CMAKE_LIBGAV1_CPU_DETECTION_CMAKE_) + return() +endif() # LIBGAV1_CMAKE_LIBGAV1_CPU_DETECTION_CMAKE_ +set(LIBGAV1_CMAKE_LIBGAV1_CPU_DETECTION_CMAKE_ 1) + +# Detect optimizations available for the current target CPU. +macro(libgav1_optimization_detect) + if(LIBGAV1_ENABLE_OPTIMIZATIONS) + string(TOLOWER "${CMAKE_SYSTEM_PROCESSOR}" cpu_lowercase) + if(cpu_lowercase MATCHES "^arm|^aarch64") + set(libgav1_have_neon ON) + elseif(cpu_lowercase MATCHES "^x86|amd64") + set(libgav1_have_avx2 ON) + set(libgav1_have_sse4 ON) + endif() + endif() + + if(libgav1_have_avx2 AND LIBGAV1_ENABLE_AVX2) + list(APPEND libgav1_defines "LIBGAV1_ENABLE_AVX2=1") + else() + list(APPEND libgav1_defines "LIBGAV1_ENABLE_AVX2=0") + endif() + + if(libgav1_have_neon AND LIBGAV1_ENABLE_NEON) + list(APPEND libgav1_defines "LIBGAV1_ENABLE_NEON=1") + else() + list(APPEND libgav1_defines "LIBGAV1_ENABLE_NEON=0") + endif() + + if(libgav1_have_sse4 AND LIBGAV1_ENABLE_SSE4_1) + list(APPEND libgav1_defines "LIBGAV1_ENABLE_SSE4_1=1") + else() + list(APPEND libgav1_defines "LIBGAV1_ENABLE_SSE4_1=0") + endif() +endmacro() diff --git a/cmake/libgav1_flags.cmake b/cmake/libgav1_flags.cmake new file mode 100644 index 0000000..2d8d9a6 --- /dev/null +++ b/cmake/libgav1_flags.cmake @@ -0,0 +1,251 @@ +# Copyright 2019 The libgav1 Authors +# +# 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. + +if(LIBGAV1_CMAKE_LIBGAV1_FLAGS_CMAKE_) + return() +endif() # LIBGAV1_CMAKE_LIBGAV1_FLAGS_CMAKE_ +set(LIBGAV1_CMAKE_LIBGAV1_FLAGS_CMAKE_ 1) + +include(CheckCXXCompilerFlag) +include(CheckCXXSourceCompiles) + +# Adds compiler flags specified by FLAGS to the sources specified by SOURCES: +# +# libgav1_set_compiler_flags_for_sources(SOURCES <sources> FLAGS <flags>) +macro(libgav1_set_compiler_flags_for_sources) + unset(compiler_SOURCES) + unset(compiler_FLAGS) + unset(optional_args) + unset(single_value_args) + set(multi_value_args SOURCES FLAGS) + cmake_parse_arguments(compiler "${optional_args}" "${single_value_args}" + "${multi_value_args}" ${ARGN}) + + if(NOT (compiler_SOURCES AND compiler_FLAGS)) + libgav1_die("libgav1_set_compiler_flags_for_sources: SOURCES and " + "FLAGS required.") + endif() + + set_source_files_properties(${compiler_SOURCES} PROPERTIES COMPILE_FLAGS + ${compiler_FLAGS}) + + if(LIBGAV1_VERBOSE GREATER 1) + foreach(source ${compiler_SOURCES}) + foreach(flag ${compiler_FLAGS}) + message("libgav1_set_compiler_flags_for_sources: source:${source} " + "flag:${flag}") + endforeach() + endforeach() + endif() +endmacro() + +# Tests compiler flags stored in list(s) specified by FLAG_LIST_VAR_NAMES, adds +# flags to $LIBGAV1_CXX_FLAGS when tests pass. Terminates configuration if +# FLAG_REQUIRED is specified and any flag check fails. +# +# ~~~ +# libgav1_test_cxx_flag(<FLAG_LIST_VAR_NAMES <flag list variable(s)>> +# [FLAG_REQUIRED]) +# ~~~ +macro(libgav1_test_cxx_flag) + unset(cxx_test_FLAG_LIST_VAR_NAMES) + unset(cxx_test_FLAG_REQUIRED) + unset(single_value_args) + set(optional_args FLAG_REQUIRED) + set(multi_value_args FLAG_LIST_VAR_NAMES) + cmake_parse_arguments(cxx_test "${optional_args}" "${single_value_args}" + "${multi_value_args}" ${ARGN}) + + if(NOT cxx_test_FLAG_LIST_VAR_NAMES) + libgav1_die("libgav1_test_cxx_flag: FLAG_LIST_VAR_NAMES required") + endif() + + unset(cxx_flags) + foreach(list_var ${cxx_test_FLAG_LIST_VAR_NAMES}) + if(LIBGAV1_VERBOSE) + message("libgav1_test_cxx_flag: adding ${list_var} to cxx_flags") + endif() + list(APPEND cxx_flags ${${list_var}}) + endforeach() + + if(LIBGAV1_VERBOSE) + message("CXX test: all flags: ${cxx_flags}") + endif() + + unset(all_cxx_flags) + list(APPEND all_cxx_flags ${LIBGAV1_CXX_FLAGS} ${cxx_flags}) + + # Turn off output from check_cxx_source_compiles. Print status directly + # instead since the logging messages from check_cxx_source_compiles can be + # quite confusing. + set(CMAKE_REQUIRED_QUIET TRUE) + + # Run the actual compile test. + unset(libgav1_all_cxx_flags_pass CACHE) + message("--- Running combined CXX flags test, flags: ${all_cxx_flags}") + check_cxx_compiler_flag("${all_cxx_flags}" libgav1_all_cxx_flags_pass) + + if(cxx_test_FLAG_REQUIRED AND NOT libgav1_all_cxx_flags_pass) + libgav1_die("Flag test failed for required flag(s): " + "${all_cxx_flags} and FLAG_REQUIRED specified.") + endif() + + if(libgav1_all_cxx_flags_pass) + # Test passed: update the global flag list used by the libgav1 target + # creation wrappers. + set(LIBGAV1_CXX_FLAGS ${cxx_flags}) + list(REMOVE_DUPLICATES LIBGAV1_CXX_FLAGS) + + if(LIBGAV1_VERBOSE) + message("LIBGAV1_CXX_FLAGS=${LIBGAV1_CXX_FLAGS}") + endif() + + message("--- Passed combined CXX flags test") + else() + message("--- Failed combined CXX flags test, testing flags individually.") + + if(cxx_flags) + message("--- Testing flags from $cxx_flags: " "${cxx_flags}") + foreach(cxx_flag ${cxx_flags}) + # Between 3.17.0 and 3.18.2 check_cxx_compiler_flag() sets a normal + # variable at parent scope while check_cxx_source_compiles() continues + # to set an internal cache variable, so we unset both to avoid the + # failure / success state persisting between checks. See + # https://gitlab.kitware.com/cmake/cmake/-/issues/21207. + unset(cxx_flag_test_passed) + unset(cxx_flag_test_passed CACHE) + message("--- Testing flag: ${cxx_flag}") + check_cxx_compiler_flag("${cxx_flag}" cxx_flag_test_passed) + + if(cxx_flag_test_passed) + message("--- Passed test for ${cxx_flag}") + else() + list(REMOVE_ITEM cxx_flags ${cxx_flag}) + message("--- Failed test for ${cxx_flag}, flag removed.") + endif() + endforeach() + + set(LIBGAV1_CXX_FLAGS ${cxx_flags}) + endif() + endif() + + if(LIBGAV1_CXX_FLAGS) + list(REMOVE_DUPLICATES LIBGAV1_CXX_FLAGS) + endif() +endmacro() + +# Tests executable linker flags stored in list specified by FLAG_LIST_VAR_NAME, +# adds flags to $LIBGAV1_EXE_LINKER_FLAGS when test passes. Terminates +# configuration when flag check fails. libgav1_set_cxx_flags() must be called +# before calling this macro because it assumes $LIBGAV1_CXX_FLAGS contains only +# valid CXX flags. +# +# libgav1_test_exe_linker_flag(<FLAG_LIST_VAR_NAME <flag list variable)>) +macro(libgav1_test_exe_linker_flag) + unset(link_FLAG_LIST_VAR_NAME) + unset(optional_args) + unset(multi_value_args) + set(single_value_args FLAG_LIST_VAR_NAME) + cmake_parse_arguments(link "${optional_args}" "${single_value_args}" + "${multi_value_args}" ${ARGN}) + + if(NOT link_FLAG_LIST_VAR_NAME) + libgav1_die("libgav1_test_link_flag: FLAG_LIST_VAR_NAME required") + endif() + + libgav1_set_and_stringify(DEST linker_flags SOURCE_VARS + ${link_FLAG_LIST_VAR_NAME}) + + if(LIBGAV1_VERBOSE) + message("EXE LINKER test: all flags: ${linker_flags}") + endif() + + # Tests of $LIBGAV1_CXX_FLAGS have already passed. Include them with the + # linker test. + libgav1_set_and_stringify(DEST CMAKE_REQUIRED_FLAGS SOURCE_VARS + LIBGAV1_CXX_FLAGS) + + # Cache the global exe linker flags. + if(CMAKE_EXE_LINKER_FLAGS) + set(cached_CMAKE_EXE_LINKER_FLAGS ${CMAKE_EXE_LINKER_FLAGS}) + libgav1_set_and_stringify(DEST CMAKE_EXE_LINKER_FLAGS SOURCE + ${linker_flags}) + endif() + + libgav1_set_and_stringify(DEST CMAKE_EXE_LINKER_FLAGS SOURCE ${linker_flags} + ${CMAKE_EXE_LINKER_FLAGS}) + + # Turn off output from check_cxx_source_compiles. Print status directly + # instead since the logging messages from check_cxx_source_compiles can be + # quite confusing. + set(CMAKE_REQUIRED_QUIET TRUE) + + message("--- Running EXE LINKER test for flags: ${linker_flags}") + + unset(linker_flag_test_passed CACHE) + set(libgav1_cxx_main "\nint main() { return 0; }") + check_cxx_source_compiles("${libgav1_cxx_main}" linker_flag_test_passed) + + if(NOT linker_flag_test_passed) + libgav1_die("EXE LINKER test failed.") + endif() + + message("--- Passed EXE LINKER flag test.") + + # Restore cached global exe linker flags. + if(cached_CMAKE_EXE_LINKER_FLAGS) + set(CMAKE_EXE_LINKER_FLAGS cached_CMAKE_EXE_LINKER_FLAGS) + else() + unset(CMAKE_EXE_LINKER_FLAGS) + endif() +endmacro() + +# Runs the libgav1 compiler tests. This macro builds up the list of list var(s) +# that is passed to libgav1_test_cxx_flag(). +# +# Note: libgav1_set_build_definitions() must be called before this macro. +macro(libgav1_set_cxx_flags) + unset(cxx_flag_lists) + + if(CMAKE_CXX_COMPILER_ID MATCHES "Clang|GNU") + list(APPEND cxx_flag_lists libgav1_base_cxx_flags) + endif() + + # Append clang flags after the base set to allow -Wno* overrides to take + # effect. Some of the base flags may enable a large set of warnings, e.g., + # -Wall. + if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") + list(APPEND cxx_flag_lists libgav1_clang_cxx_flags) + endif() + + if(MSVC) + list(APPEND cxx_flag_lists libgav1_msvc_cxx_flags) + endif() + + if(LIBGAV1_VERBOSE) + if(cxx_flag_lists) + libgav1_set_and_stringify(DEST cxx_flags SOURCE_VARS ${cxx_flag_lists}) + message("libgav1_set_cxx_flags: internal CXX flags: ${cxx_flags}") + endif() + endif() + + if(LIBGAV1_CXX_FLAGS) + list(APPEND cxx_flag_lists LIBGAV1_CXX_FLAGS) + if(LIBGAV1_VERBOSE) + message("libgav1_set_cxx_flags: user CXX flags: ${LIBGAV1_CXX_FLAGS}") + endif() + endif() + + libgav1_test_cxx_flag(FLAG_LIST_VAR_NAMES ${cxx_flag_lists}) +endmacro() diff --git a/cmake/libgav1_helpers.cmake b/cmake/libgav1_helpers.cmake new file mode 100644 index 0000000..76d8d67 --- /dev/null +++ b/cmake/libgav1_helpers.cmake @@ -0,0 +1,134 @@ +# Copyright 2019 The libgav1 Authors +# +# 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. + +if(LIBGAV1_CMAKE_LIBGAV1_HELPERS_CMAKE_) + return() +endif() # LIBGAV1_CMAKE_LIBGAV1_HELPERS_CMAKE_ +set(LIBGAV1_CMAKE_LIBGAV1_HELPERS_CMAKE_ 1) + +# Kills build generation using message(FATAL_ERROR) and outputs all data passed +# to the console via use of $ARGN. +macro(libgav1_die) + message(FATAL_ERROR ${ARGN}) +endmacro() + +# Converts semi-colon delimited list variable(s) to string. Output is written to +# variable supplied via the DEST parameter. Input is from an expanded variable +# referenced by SOURCE and/or variable(s) referenced by SOURCE_VARS. +macro(libgav1_set_and_stringify) + set(optional_args) + set(single_value_args DEST SOURCE_VAR) + set(multi_value_args SOURCE SOURCE_VARS) + cmake_parse_arguments(sas "${optional_args}" "${single_value_args}" + "${multi_value_args}" ${ARGN}) + + if(NOT sas_DEST OR NOT (sas_SOURCE OR sas_SOURCE_VARS)) + libgav1_die("libgav1_set_and_stringify: DEST and at least one of SOURCE " + "SOURCE_VARS required.") + endif() + + unset(${sas_DEST}) + + if(sas_SOURCE) + # $sas_SOURCE is one or more expanded variables, just copy the values to + # $sas_DEST. + set(${sas_DEST} "${sas_SOURCE}") + endif() + + if(sas_SOURCE_VARS) + # $sas_SOURCE_VARS is one or more variable names. Each iteration expands a + # variable and appends it to $sas_DEST. + foreach(source_var ${sas_SOURCE_VARS}) + set(${sas_DEST} "${${sas_DEST}} ${${source_var}}") + endforeach() + + # Because $sas_DEST can be empty when entering this scope leading whitespace + # can be introduced to $sas_DEST on the first iteration of the above loop. + # Remove it: + string(STRIP "${${sas_DEST}}" ${sas_DEST}) + endif() + + # Lists in CMake are simply semicolon delimited strings, so stringification is + # just a find and replace of the semicolon. + string(REPLACE ";" " " ${sas_DEST} "${${sas_DEST}}") + + if(LIBGAV1_VERBOSE GREATER 1) + message("libgav1_set_and_stringify: ${sas_DEST}=${${sas_DEST}}") + endif() +endmacro() + +# Creates a dummy source file in $LIBGAV1_GENERATED_SOURCES_DIRECTORY and adds +# it to the specified target. Optionally adds its path to a list variable. +# +# libgav1_create_dummy_source_file(<TARGET <target> BASENAME <basename of file>> +# [LISTVAR <list variable>]) +macro(libgav1_create_dummy_source_file) + set(optional_args) + set(single_value_args TARGET BASENAME LISTVAR) + set(multi_value_args) + cmake_parse_arguments(cdsf "${optional_args}" "${single_value_args}" + "${multi_value_args}" ${ARGN}) + + if(NOT cdsf_TARGET OR NOT cdsf_BASENAME) + libgav1_die( + "libgav1_create_dummy_source_file: TARGET and BASENAME required.") + endif() + + if(NOT LIBGAV1_GENERATED_SOURCES_DIRECTORY) + set(LIBGAV1_GENERATED_SOURCES_DIRECTORY "${libgav1_build}/gen_src") + endif() + + set(dummy_source_dir "${LIBGAV1_GENERATED_SOURCES_DIRECTORY}") + set(dummy_source_file + "${dummy_source_dir}/libgav1_${cdsf_TARGET}_${cdsf_BASENAME}.cc") + set(dummy_source_code + "// Generated file. DO NOT EDIT!\n" + "// C++ source file created for target ${cdsf_TARGET}. \n" + "void libgav1_${cdsf_TARGET}_${cdsf_BASENAME}_dummy_function(void);\n" + "void libgav1_${cdsf_TARGET}_${cdsf_BASENAME}_dummy_function(void) {}\n") + file(WRITE "${dummy_source_file}" "${dummy_source_code}") + + target_sources(${cdsf_TARGET} PRIVATE ${dummy_source_file}) + + if(cdsf_LISTVAR) + list(APPEND ${cdsf_LISTVAR} "${dummy_source_file}") + endif() +endmacro() + +# Loads the version components from $libgav1_source/gav1/version.h and sets the +# corresponding CMake variables: +# - LIBGAV1_MAJOR_VERSION +# - LIBGAV1_MINOR_VERSION +# - LIBGAV1_PATCH_VERSION +# - LIBGAV1_VERSION, which is: +# - $LIBGAV1_MAJOR_VERSION.$LIBGAV1_MINOR_VERSION.$LIBGAV1_PATCH_VERSION +macro(libgav1_load_version_info) + file(STRINGS "${libgav1_source}/gav1/version.h" version_file_strings) + foreach(str ${version_file_strings}) + if(str MATCHES "#define LIBGAV1_") + if(str MATCHES "#define LIBGAV1_MAJOR_VERSION ") + string(REPLACE "#define LIBGAV1_MAJOR_VERSION " "" LIBGAV1_MAJOR_VERSION + "${str}") + elseif(str MATCHES "#define LIBGAV1_MINOR_VERSION ") + string(REPLACE "#define LIBGAV1_MINOR_VERSION " "" LIBGAV1_MINOR_VERSION + "${str}") + elseif(str MATCHES "#define LIBGAV1_PATCH_VERSION ") + string(REPLACE "#define LIBGAV1_PATCH_VERSION " "" LIBGAV1_PATCH_VERSION + "${str}") + endif() + endif() + endforeach() + set(LIBGAV1_VERSION "${LIBGAV1_MAJOR_VERSION}.${LIBGAV1_MINOR_VERSION}") + set(LIBGAV1_VERSION "${LIBGAV1_VERSION}.${LIBGAV1_PATCH_VERSION}") +endmacro() diff --git a/cmake/libgav1_install.cmake b/cmake/libgav1_install.cmake new file mode 100644 index 0000000..b7f6006 --- /dev/null +++ b/cmake/libgav1_install.cmake @@ -0,0 +1,60 @@ +# Copyright 2019 The libgav1 Authors +# +# 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. + +if(LIBGAV1_CMAKE_LIBGAV1_INSTALL_CMAKE_) + return() +endif() # LIBGAV1_CMAKE_LIBGAV1_INSTALL_CMAKE_ +set(LIBGAV1_CMAKE_LIBGAV1_INSTALL_CMAKE_ 1) + +# Sets up the Libgav1 install targets. Must be called after the static library +# target is created. +macro(libgav1_setup_install_target) + if(NOT (MSVC OR XCODE)) + include(GNUInstallDirs) + + # pkg-config: libgav1.pc + set(prefix "${CMAKE_INSTALL_PREFIX}") + set(exec_prefix "\${prefix}") + set(libdir "\${prefix}/${CMAKE_INSTALL_LIBDIR}") + set(includedir "\${prefix}/${CMAKE_INSTALL_INCLUDEDIR}") + set(libgav1_lib_name "libgav1") + + configure_file("${libgav1_root}/cmake/libgav1.pc.template" + "${libgav1_build}/libgav1.pc" @ONLY NEWLINE_STYLE UNIX) + install(FILES "${libgav1_build}/libgav1.pc" + DESTINATION "${prefix}/${CMAKE_INSTALL_LIBDIR}/pkgconfig") + + # CMake config: libgav1-config.cmake + set(LIBGAV1_INCLUDE_DIRS "${prefix}/${CMAKE_INSTALL_INCLUDEDIR}") + configure_file("${libgav1_root}/cmake/libgav1-config.cmake.template" + "${libgav1_build}/libgav1-config.cmake" @ONLY + NEWLINE_STYLE UNIX) + install( + FILES "${libgav1_build}/libgav1-config.cmake" + DESTINATION "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_DATAROOTDIR}/cmake") + + install( + FILES ${libgav1_api_includes} + DESTINATION "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_INCLUDEDIR}/gav1") + + install(TARGETS gav1_decode DESTINATION + "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}") + install(TARGETS libgav1_static DESTINATION + "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}") + if(BUILD_SHARED_LIBS) + install(TARGETS libgav1_shared DESTINATION + "${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}") + endif() + endif() +endmacro() diff --git a/cmake/libgav1_intrinsics.cmake b/cmake/libgav1_intrinsics.cmake new file mode 100644 index 0000000..a2e9ddb --- /dev/null +++ b/cmake/libgav1_intrinsics.cmake @@ -0,0 +1,135 @@ +# Copyright 2019 The libgav1 Authors +# +# 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. + +if(LIBGAV1_CMAKE_LIBGAV1_INTRINSICS_CMAKE_) + return() +endif() # LIBGAV1_CMAKE_LIBGAV1_INTRINSICS_CMAKE_ +set(LIBGAV1_CMAKE_LIBGAV1_INTRINSICS_CMAKE_ 1) + +# Returns the compiler flag for the SIMD intrinsics suffix specified by the +# SUFFIX argument via the variable specified by the VARIABLE argument: +# libgav1_get_intrinsics_flag_for_suffix(SUFFIX <suffix> VARIABLE <var name>) +macro(libgav1_get_intrinsics_flag_for_suffix) + unset(intrinsics_SUFFIX) + unset(intrinsics_VARIABLE) + unset(optional_args) + unset(multi_value_args) + set(single_value_args SUFFIX VARIABLE) + cmake_parse_arguments(intrinsics "${optional_args}" "${single_value_args}" + "${multi_value_args}" ${ARGN}) + + if(NOT (intrinsics_SUFFIX AND intrinsics_VARIABLE)) + message(FATAL_ERROR "libgav1_get_intrinsics_flag_for_suffix: SUFFIX and " + "VARIABLE required.") + endif() + + if(intrinsics_SUFFIX MATCHES "neon") + if(NOT MSVC) + set(${intrinsics_VARIABLE} "${LIBGAV1_NEON_INTRINSICS_FLAG}") + endif() + elseif(intrinsics_SUFFIX MATCHES "avx2") + if(MSVC) + set(${intrinsics_VARIABLE} "/arch:AVX2") + else() + set(${intrinsics_VARIABLE} "-mavx2") + endif() + elseif(intrinsics_SUFFIX MATCHES "sse4") + if(NOT MSVC) + set(${intrinsics_VARIABLE} "-msse4.1") + endif() + else() + message(FATAL_ERROR "libgav1_get_intrinsics_flag_for_suffix: Unknown " + "instrinics suffix: ${intrinsics_SUFFIX}") + endif() + + if(LIBGAV1_VERBOSE GREATER 1) + message("libgav1_get_intrinsics_flag_for_suffix: " + "suffix:${intrinsics_SUFFIX} flag:${${intrinsics_VARIABLE}}") + endif() +endmacro() + +# Processes source files specified by SOURCES and adds intrinsics flags as +# necessary: libgav1_process_intrinsics_sources(SOURCES <sources>) +# +# Detects requirement for intrinsics flags using source file name suffix. +# Currently supports AVX2 and SSE4.1. +macro(libgav1_process_intrinsics_sources) + unset(arg_TARGET) + unset(arg_SOURCES) + unset(optional_args) + set(single_value_args TARGET) + set(multi_value_args SOURCES) + cmake_parse_arguments(arg "${optional_args}" "${single_value_args}" + "${multi_value_args}" ${ARGN}) + if(NOT (arg_TARGET AND arg_SOURCES)) + message(FATAL_ERROR "libgav1_process_intrinsics_sources: TARGET and " + "SOURCES required.") + endif() + + if(LIBGAV1_ENABLE_AVX2 AND libgav1_have_avx2) + unset(avx2_sources) + list(APPEND avx2_sources ${arg_SOURCES}) + + list(FILTER avx2_sources INCLUDE REGEX + "${libgav1_avx2_source_file_suffix}$") + + if(avx2_sources) + unset(avx2_flags) + libgav1_get_intrinsics_flag_for_suffix(SUFFIX + ${libgav1_avx2_source_file_suffix} + VARIABLE avx2_flags) + if(avx2_flags) + libgav1_set_compiler_flags_for_sources(SOURCES ${avx2_sources} FLAGS + ${avx2_flags}) + endif() + endif() + endif() + + if(LIBGAV1_ENABLE_SSE4_1 AND libgav1_have_sse4) + unset(sse4_sources) + list(APPEND sse4_sources ${arg_SOURCES}) + + list(FILTER sse4_sources INCLUDE REGEX + "${libgav1_sse4_source_file_suffix}$") + + if(sse4_sources) + unset(sse4_flags) + libgav1_get_intrinsics_flag_for_suffix(SUFFIX + ${libgav1_sse4_source_file_suffix} + VARIABLE sse4_flags) + if(sse4_flags) + libgav1_set_compiler_flags_for_sources(SOURCES ${sse4_sources} FLAGS + ${sse4_flags}) + endif() + endif() + endif() + + if(LIBGAV1_ENABLE_NEON AND libgav1_have_neon) + unset(neon_sources) + list(APPEND neon_sources ${arg_SOURCES}) + list(FILTER neon_sources INCLUDE REGEX + "${libgav1_neon_source_file_suffix}$") + + if(neon_sources AND LIBGAV1_NEON_INTRINSICS_FLAG) + unset(neon_flags) + libgav1_get_intrinsics_flag_for_suffix(SUFFIX + ${libgav1_neon_source_file_suffix} + VARIABLE neon_flags) + if(neon_flags) + libgav1_set_compiler_flags_for_sources(SOURCES ${neon_sources} FLAGS + ${neon_flags}) + endif() + endif() + endif() +endmacro() diff --git a/cmake/libgav1_options.cmake b/cmake/libgav1_options.cmake new file mode 100644 index 0000000..6327bee --- /dev/null +++ b/cmake/libgav1_options.cmake @@ -0,0 +1,55 @@ +# Copyright 2019 The libgav1 Authors +# +# 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. + +if(LIBGAV1_CMAKE_LIBGAV1_OPTIONS_CMAKE_) + return() +endif() # LIBGAV1_CMAKE_LIBGAV1_OPTIONS_CMAKE_ +set(LIBGAV1_CMAKE_LIBGAV1_OPTIONS_CMAKE_) + +# Simple wrapper for CMake's builtin option command that tracks libgav1's build +# options in the list variable $libgav1_options. +macro(libgav1_option) + unset(option_NAME) + unset(option_HELPSTRING) + unset(option_VALUE) + unset(optional_args) + unset(multi_value_args) + set(single_value_args NAME HELPSTRING VALUE) + cmake_parse_arguments(option "${optional_args}" "${single_value_args}" + "${multi_value_args}" ${ARGN}) + + if(NOT (option_NAME AND option_HELPSTRING AND DEFINED option_VALUE)) + message(FATAL_ERROR "libgav1_option: NAME HELPSTRING and VALUE required.") + endif() + + option(${option_NAME} ${option_HELPSTRING} ${option_VALUE}) + + if(LIBGAV1_VERBOSE GREATER 2) + message("--------- libgav1_option ---------\n" + "option_NAME=${option_NAME}\n" + "option_HELPSTRING=${option_HELPSTRING}\n" + "option_VALUE=${option_VALUE}\n" + "------------------------------------------\n") + endif() + + list(APPEND libgav1_options ${option_NAME}) + list(REMOVE_DUPLICATES libgav1_options) +endmacro() + +# Dumps the $libgav1_options list via CMake message command. +macro(libgav1_dump_options) + foreach(option_name ${libgav1_options}) + message("${option_name}: ${${option_name}}") + endforeach() +endmacro() diff --git a/cmake/libgav1_sanitizer.cmake b/cmake/libgav1_sanitizer.cmake new file mode 100644 index 0000000..4bb2263 --- /dev/null +++ b/cmake/libgav1_sanitizer.cmake @@ -0,0 +1,45 @@ +# Copyright 2019 The libgav1 Authors +# +# 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. + +if(LIBGAV1_CMAKE_LIBGAV1_SANITIZER_CMAKE_) + return() +endif() # LIBGAV1_CMAKE_LIBGAV1_SANITIZER_CMAKE_ +set(LIBGAV1_CMAKE_LIBGAV1_SANITIZER_CMAKE_ 1) + +macro(libgav1_configure_sanitizer) + if(LIBGAV1_SANITIZE AND NOT MSVC) + if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") + if(LIBGAV1_SANITIZE MATCHES "cfi") + list(APPEND LIBGAV1_CXX_FLAGS "-flto" "-fno-sanitize-trap=cfi") + list(APPEND LIBGAV1_EXE_LINKER_FLAGS "-flto" "-fno-sanitize-trap=cfi" + "-fuse-ld=gold") + endif() + + if(${CMAKE_SIZEOF_VOID_P} EQUAL 4 + AND LIBGAV1_SANITIZE MATCHES "integer|undefined") + list(APPEND LIBGAV1_EXE_LINKER_FLAGS "--rtlib=compiler-rt" "-lgcc_s") + endif() + endif() + + list(APPEND LIBGAV1_CXX_FLAGS "-fsanitize=${LIBGAV1_SANITIZE}") + list(APPEND LIBGAV1_EXE_LINKER_FLAGS "-fsanitize=${LIBGAV1_SANITIZE}") + + # Make sanitizer callstacks accurate. + list(APPEND LIBGAV1_CXX_FLAGS "-fno-omit-frame-pointer" + "-fno-optimize-sibling-calls") + + libgav1_test_cxx_flag(FLAG_LIST_VAR_NAMES LIBGAV1_CXX_FLAGS FLAG_REQUIRED) + libgav1_test_exe_linker_flag(FLAG_LIST_VAR_NAME LIBGAV1_EXE_LINKER_FLAGS) + endif() +endmacro() diff --git a/cmake/libgav1_targets.cmake b/cmake/libgav1_targets.cmake new file mode 100644 index 0000000..78b4865 --- /dev/null +++ b/cmake/libgav1_targets.cmake @@ -0,0 +1,347 @@ +# Copyright 2019 The libgav1 Authors +# +# 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. + +if(LIBGAV1_CMAKE_GAV1_TARGETS_CMAKE_) + return() +endif() # LIBGAV1_CMAKE_GAV1_TARGETS_CMAKE_ +set(LIBGAV1_CMAKE_GAV1_TARGETS_CMAKE_ 1) + +# Resets list variables used to track libgav1 targets. +macro(libgav1_reset_target_lists) + unset(libgav1_targets) + unset(libgav1_exe_targets) + unset(libgav1_lib_targets) + unset(libgav1_objlib_targets) + unset(libgav1_sources) + unset(libgav1_test_targets) +endmacro() + +# Creates an executable target. The target name is passed as a parameter to the +# NAME argument, and the sources passed as a parameter to the SOURCES argument: +# libgav1_add_test(NAME <name> SOURCES <sources> [optional args]) +# +# Optional args: +# cmake-format: off +# - OUTPUT_NAME: Override output file basename. Target basename defaults to +# NAME. +# - TEST: Flag. Presence means treat executable as a test. +# - DEFINES: List of preprocessor macro definitions. +# - INCLUDES: list of include directories for the target. +# - COMPILE_FLAGS: list of compiler flags for the target. +# - LINK_FLAGS: List of linker flags for the target. +# - OBJLIB_DEPS: List of CMake object library target dependencies. +# - LIB_DEPS: List of CMake library dependencies. +# cmake-format: on +# +# Sources passed to this macro are added to $libgav1_test_sources when TEST is +# specified. Otherwise sources are added to $libgav1_sources. +# +# Targets passed to this macro are always added $libgav1_targets. When TEST is +# specified targets are also added to list $libgav1_test_targets. Otherwise +# targets are added to $libgav1_exe_targets. +macro(libgav1_add_executable) + unset(exe_TEST) + unset(exe_TEST_DEFINES_MAIN) + unset(exe_NAME) + unset(exe_OUTPUT_NAME) + unset(exe_SOURCES) + unset(exe_DEFINES) + unset(exe_INCLUDES) + unset(exe_COMPILE_FLAGS) + unset(exe_LINK_FLAGS) + unset(exe_OBJLIB_DEPS) + unset(exe_LIB_DEPS) + set(optional_args TEST) + set(single_value_args NAME OUTPUT_NAME) + set(multi_value_args SOURCES DEFINES INCLUDES COMPILE_FLAGS LINK_FLAGS + OBJLIB_DEPS LIB_DEPS) + + cmake_parse_arguments(exe "${optional_args}" "${single_value_args}" + "${multi_value_args}" ${ARGN}) + + if(LIBGAV1_VERBOSE GREATER 1) + message("--------- libgav1_add_executable ---------\n" + "exe_TEST=${exe_TEST}\n" + "exe_TEST_DEFINES_MAIN=${exe_TEST_DEFINES_MAIN}\n" + "exe_NAME=${exe_NAME}\n" + "exe_OUTPUT_NAME=${exe_OUTPUT_NAME}\n" + "exe_SOURCES=${exe_SOURCES}\n" + "exe_DEFINES=${exe_DEFINES}\n" + "exe_INCLUDES=${exe_INCLUDES}\n" + "exe_COMPILE_FLAGS=${exe_COMPILE_FLAGS}\n" + "exe_LINK_FLAGS=${exe_LINK_FLAGS}\n" + "exe_OBJLIB_DEPS=${exe_OBJLIB_DEPS}\n" + "exe_LIB_DEPS=${exe_LIB_DEPS}\n" + "------------------------------------------\n") + endif() + + if(NOT (exe_NAME AND exe_SOURCES)) + message(FATAL_ERROR "libgav1_add_executable: NAME and SOURCES required.") + endif() + + list(APPEND libgav1_targets ${exe_NAME}) + if(exe_TEST) + list(APPEND libgav1_test_targets ${exe_NAME}) + list(APPEND libgav1_test_sources ${exe_SOURCES}) + else() + list(APPEND libgav1_exe_targets ${exe_NAME}) + list(APPEND libgav1_sources ${exe_SOURCES}) + endif() + + add_executable(${exe_NAME} ${exe_SOURCES}) + + if(exe_OUTPUT_NAME) + set_target_properties(${exe_NAME} PROPERTIES OUTPUT_NAME ${exe_OUTPUT_NAME}) + endif() + + libgav1_process_intrinsics_sources(TARGET ${exe_NAME} SOURCES ${exe_SOURCES}) + + if(exe_DEFINES) + target_compile_definitions(${exe_NAME} PRIVATE ${exe_DEFINES}) + endif() + + if(exe_INCLUDES) + target_include_directories(${exe_NAME} PRIVATE ${exe_INCLUDES}) + endif() + + if(exe_COMPILE_FLAGS OR LIBGAV1_CXX_FLAGS) + target_compile_options(${exe_NAME} + PRIVATE ${exe_COMPILE_FLAGS} ${LIBGAV1_CXX_FLAGS}) + endif() + + if(exe_LINK_FLAGS OR LIBGAV1_EXE_LINKER_FLAGS) + set_target_properties(${exe_NAME} + PROPERTIES LINK_FLAGS ${exe_LINK_FLAGS} + ${LIBGAV1_EXE_LINKER_FLAGS}) + endif() + + if(exe_OBJLIB_DEPS) + foreach(objlib_dep ${exe_OBJLIB_DEPS}) + target_sources(${exe_NAME} PRIVATE $<TARGET_OBJECTS:${objlib_dep}>) + endforeach() + endif() + + if(CMAKE_THREAD_LIBS_INIT) + list(APPEND exe_LIB_DEPS ${CMAKE_THREAD_LIBS_INIT}) + endif() + + if(BUILD_SHARED_LIBS AND (MSVC OR WIN32)) + target_compile_definitions(${lib_NAME} PRIVATE "LIBGAV1_BUILDING_DLL=0") + endif() + + if(exe_LIB_DEPS) + unset(exe_static) + if("${CMAKE_EXE_LINKER_FLAGS} ${LIBGAV1_EXE_LINKER_FLAGS}" MATCHES "static") + set(exe_static ON) + endif() + + if(exe_static AND CMAKE_CXX_COMPILER_ID MATCHES "Clang|GNU") + # Third party dependencies can introduce dependencies on system and test + # libraries. Since the target created here is an executable, and CMake + # does not provide a method of controlling order of link dependencies, + # wrap all of the dependencies of this target in start/end group flags to + # ensure that dependencies of third party targets can be resolved when + # those dependencies happen to be resolved by dependencies of the current + # target. + list(INSERT exe_LIB_DEPS 0 -Wl,--start-group) + list(APPEND exe_LIB_DEPS -Wl,--end-group) + endif() + target_link_libraries(${exe_NAME} PRIVATE ${exe_LIB_DEPS}) + endif() +endmacro() + +# Creates a library target of the specified type. The target name is passed as a +# parameter to the NAME argument, the type as a parameter to the TYPE argument, +# and the sources passed as a parameter to the SOURCES argument: +# libgav1_add_library(NAME <name> TYPE <type> SOURCES <sources> [optional args]) +# +# Optional args: +# cmake-format: off +# - OUTPUT_NAME: Override output file basename. Target basename defaults to +# NAME. OUTPUT_NAME is ignored when BUILD_SHARED_LIBS is enabled and CMake +# is generating a build for which MSVC or WIN32 are true. This is to avoid +# output basename collisions with DLL import libraries. +# - TEST: Flag. Presence means treat library as a test. +# - DEFINES: List of preprocessor macro definitions. +# - INCLUDES: list of include directories for the target. +# - COMPILE_FLAGS: list of compiler flags for the target. +# - LINK_FLAGS: List of linker flags for the target. +# - OBJLIB_DEPS: List of CMake object library target dependencies. +# - LIB_DEPS: List of CMake library dependencies. +# - PUBLIC_INCLUDES: List of include paths to export to dependents. +# cmake-format: on +# +# Sources passed to the macro are added to the lists tracking libgav1 sources: +# cmake-format: off +# - When TEST is specified sources are added to $libgav1_test_sources. +# - Otherwise sources are added to $libgav1_sources. +# cmake-format: on +# +# Targets passed to this macro are added to the lists tracking libgav1 targets: +# cmake-format: off +# - Targets are always added to $libgav1_targets. +# - When the TEST flag is specified, targets are added to +# $libgav1_test_targets. +# - When TEST is not specified: +# - Libraries of type SHARED are added to $libgav1_dylib_targets. +# - Libraries of type OBJECT are added to $libgav1_objlib_targets. +# - Libraries of type STATIC are added to $libgav1_lib_targets. +# cmake-format: on +macro(libgav1_add_library) + unset(lib_TEST) + unset(lib_NAME) + unset(lib_OUTPUT_NAME) + unset(lib_TYPE) + unset(lib_SOURCES) + unset(lib_DEFINES) + unset(lib_INCLUDES) + unset(lib_COMPILE_FLAGS) + unset(lib_LINK_FLAGS) + unset(lib_OBJLIB_DEPS) + unset(lib_LIB_DEPS) + unset(lib_PUBLIC_INCLUDES) + set(optional_args TEST) + set(single_value_args NAME OUTPUT_NAME TYPE) + set(multi_value_args SOURCES DEFINES INCLUDES COMPILE_FLAGS LINK_FLAGS + OBJLIB_DEPS LIB_DEPS PUBLIC_INCLUDES) + + cmake_parse_arguments(lib "${optional_args}" "${single_value_args}" + "${multi_value_args}" ${ARGN}) + + if(LIBGAV1_VERBOSE GREATER 1) + message("--------- libgav1_add_library ---------\n" + "lib_TEST=${lib_TEST}\n" + "lib_NAME=${lib_NAME}\n" + "lib_OUTPUT_NAME=${lib_OUTPUT_NAME}\n" + "lib_TYPE=${lib_TYPE}\n" + "lib_SOURCES=${lib_SOURCES}\n" + "lib_DEFINES=${lib_DEFINES}\n" + "lib_INCLUDES=${lib_INCLUDES}\n" + "lib_COMPILE_FLAGS=${lib_COMPILE_FLAGS}\n" + "lib_LINK_FLAGS=${lib_LINK_FLAGS}\n" + "lib_OBJLIB_DEPS=${lib_OBJLIB_DEPS}\n" + "lib_LIB_DEPS=${lib_LIB_DEPS}\n" + "lib_PUBLIC_INCLUDES=${lib_PUBLIC_INCLUDES}\n" + "---------------------------------------\n") + endif() + + if(NOT (lib_NAME AND lib_TYPE AND lib_SOURCES)) + message(FATAL_ERROR "libgav1_add_library: NAME, TYPE and SOURCES required.") + endif() + + list(APPEND libgav1_targets ${lib_NAME}) + if(lib_TEST) + list(APPEND libgav1_test_targets ${lib_NAME}) + list(APPEND libgav1_test_sources ${lib_SOURCES}) + else() + list(APPEND libgav1_sources ${lib_SOURCES}) + if(lib_TYPE STREQUAL OBJECT) + list(APPEND libgav1_objlib_targets ${lib_NAME}) + elseif(lib_TYPE STREQUAL SHARED) + list(APPEND libgav1_dylib_targets ${lib_NAME}) + elseif(lib_TYPE STREQUAL STATIC) + list(APPEND libgav1_lib_targets ${lib_NAME}) + else() + message(WARNING "libgav1_add_library: Unhandled type: ${lib_TYPE}") + endif() + endif() + + add_library(${lib_NAME} ${lib_TYPE} ${lib_SOURCES}) + libgav1_process_intrinsics_sources(TARGET ${lib_NAME} SOURCES ${lib_SOURCES}) + + if(lib_OUTPUT_NAME) + if(NOT (BUILD_SHARED_LIBS AND (MSVC OR WIN32))) + set_target_properties(${lib_NAME} + PROPERTIES OUTPUT_NAME ${lib_OUTPUT_NAME}) + endif() + endif() + + if(lib_DEFINES) + target_compile_definitions(${lib_NAME} PRIVATE ${lib_DEFINES}) + endif() + + if(lib_INCLUDES) + target_include_directories(${lib_NAME} PRIVATE ${lib_INCLUDES}) + endif() + + if(lib_PUBLIC_INCLUDES) + target_include_directories(${lib_NAME} PUBLIC ${lib_PUBLIC_INCLUDES}) + endif() + + if(lib_COMPILE_FLAGS OR LIBGAV1_CXX_FLAGS) + target_compile_options(${lib_NAME} + PRIVATE ${lib_COMPILE_FLAGS} ${LIBGAV1_CXX_FLAGS}) + endif() + + if(lib_LINK_FLAGS) + set_target_properties(${lib_NAME} PROPERTIES LINK_FLAGS ${lib_LINK_FLAGS}) + endif() + + if(lib_OBJLIB_DEPS) + foreach(objlib_dep ${lib_OBJLIB_DEPS}) + target_sources(${lib_NAME} PRIVATE $<TARGET_OBJECTS:${objlib_dep}>) + endforeach() + endif() + + if(lib_LIB_DEPS) + if(lib_TYPE STREQUAL STATIC) + set(link_type PUBLIC) + else() + set(link_type PRIVATE) + if(lib_TYPE STREQUAL SHARED AND CMAKE_CXX_COMPILER_ID MATCHES "Clang|GNU") + # The libgav1 shared object uses the static libgav1 as input to turn it + # into a shared object. Include everything from the static library in + # the shared object. + if(APPLE) + list(INSERT lib_LIB_DEPS 0 -Wl,-force_load) + else() + list(INSERT lib_LIB_DEPS 0 -Wl,--whole-archive) + list(APPEND lib_LIB_DEPS -Wl,--no-whole-archive) + endif() + endif() + endif() + target_link_libraries(${lib_NAME} ${link_type} ${lib_LIB_DEPS}) + endif() + + if(NOT MSVC AND lib_NAME MATCHES "^lib") + # Non-MSVC generators prepend lib to static lib target file names. Libgav1 + # already includes lib in its name. Avoid naming output files liblib*. + set_target_properties(${lib_NAME} PROPERTIES PREFIX "") + endif() + + if(lib_TYPE STREQUAL SHARED AND NOT MSVC) + set_target_properties(${lib_NAME} PROPERTIES SOVERSION ${LIBGAV1_SOVERSION}) + endif() + + if(BUILD_SHARED_LIBS AND (MSVC OR WIN32)) + if(lib_TYPE STREQUAL SHARED) + target_compile_definitions(${lib_NAME} PRIVATE "LIBGAV1_BUILDING_DLL=1") + else() + target_compile_definitions(${lib_NAME} PRIVATE "LIBGAV1_BUILDING_DLL=0") + endif() + endif() + + # Determine if $lib_NAME is a header only target. + set(sources_list ${lib_SOURCES}) + list(FILTER sources_list INCLUDE REGEX cc$) + if(NOT sources_list) + if(NOT XCODE) + # This is a header only target. Tell CMake the link language. + set_target_properties(${lib_NAME} PROPERTIES LINKER_LANGUAGE CXX) + else() + # The Xcode generator ignores LINKER_LANGUAGE. Add a dummy cc file. + libgav1_create_dummy_source_file(TARGET ${lib_NAME} BASENAME ${lib_NAME}) + endif() + endif() +endmacro() diff --git a/cmake/libgav1_variables.cmake b/cmake/libgav1_variables.cmake new file mode 100644 index 0000000..0dd0f37 --- /dev/null +++ b/cmake/libgav1_variables.cmake @@ -0,0 +1,78 @@ +# Copyright 2019 The libgav1 Authors +# +# 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. + +if(LIBGAV1_CMAKE_LIBGAV1_VARIABLES_CMAKE_) + return() +endif() # LIBGAV1_CMAKE_LIBGAV1_VARIABLES_CMAKE_ +set(LIBGAV1_CMAKE_LIBGAV1_VARIABLES_CMAKE_ 1) + +# Halts generation when $variable_name does not refer to a directory that +# exists. +macro(libgav1_variable_must_be_directory variable_name) + if("${variable_name}" STREQUAL "") + message( + FATAL_ERROR + "Empty variable_name passed to libgav1_variable_must_be_directory.") + endif() + + if("${${variable_name}}" STREQUAL "") + message( + FATAL_ERROR + "Empty variable ${variable_name} is required to build libgav1.") + endif() + + if(NOT IS_DIRECTORY "${${variable_name}}") + message( + FATAL_ERROR + "${variable_name}, which is ${${variable_name}}, does not refer to a\n" + "directory.") + endif() +endmacro() + +# Adds $var_name to the tracked variables list. +macro(libgav1_track_configuration_variable var_name) + if(LIBGAV1_VERBOSE GREATER 2) + message("---- libgav1_track_configuration_variable ----\n" + "var_name=${var_name}\n" + "----------------------------------------------\n") + endif() + + list(APPEND libgav1_configuration_variables ${var_name}) + list(REMOVE_DUPLICATES libgav1_configuration_variables) +endmacro() + +# Logs current C++ and executable linker flags via CMake's message command. +macro(libgav1_dump_cmake_flag_variables) + unset(flag_variables) + list(APPEND flag_variables "CMAKE_CXX_FLAGS_INIT" "CMAKE_CXX_FLAGS" + "CMAKE_EXE_LINKER_FLAGS_INIT" "CMAKE_EXE_LINKER_FLAGS") + if(CMAKE_BUILD_TYPE) + list(APPEND flag_variables "CMAKE_BUILD_TYPE" + "CMAKE_CXX_FLAGS_${CMAKE_BUILD_TYPE}_INIT" + "CMAKE_CXX_FLAGS_${CMAKE_BUILD_TYPE}" + "CMAKE_EXE_LINKER_FLAGS_${CMAKE_BUILD_TYPE}_INIT" + "CMAKE_EXE_LINKER_FLAGS_${CMAKE_BUILD_TYPE}") + endif() + foreach(flag_variable ${flag_variables}) + message("${flag_variable}:${${flag_variable}}") + endforeach() +endmacro() + +# Dumps the variables tracked in $libgav1_configuration_variables via CMake's +# message command. +macro(libgav1_dump_tracked_configuration_variables) + foreach(config_variable ${libgav1_configuration_variables}) + message("${config_variable}:${${config_variable}}") + endforeach() +endmacro() diff --git a/cmake/toolchains/aarch64-linux-gnu.cmake b/cmake/toolchains/aarch64-linux-gnu.cmake new file mode 100644 index 0000000..7ffe397 --- /dev/null +++ b/cmake/toolchains/aarch64-linux-gnu.cmake @@ -0,0 +1,28 @@ +# Copyright 2019 The libgav1 Authors +# +# 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. + +if(LIBGAV1_CMAKE_TOOLCHAINS_AARCH64_LINUX_GNU_CMAKE_) + return() +endif() # LIBGAV1_CMAKE_TOOLCHAINS_AARCH64_LINUX_GNU_CMAKE_ +set(LIBGAV1_CMAKE_TOOLCHAINS_AARCH64_LINUX_GNU_CMAKE_ 1) + +set(CMAKE_SYSTEM_NAME "Linux") + +if("${CROSS}" STREQUAL "") + set(CROSS aarch64-linux-gnu-) +endif() + +set(CMAKE_CXX_COMPILER ${CROSS}g++) +set(CMAKE_CXX_FLAGS_INIT "-march=armv8-a") +set(CMAKE_SYSTEM_PROCESSOR "aarch64") diff --git a/cmake/toolchains/android.cmake b/cmake/toolchains/android.cmake new file mode 100644 index 0000000..492957b --- /dev/null +++ b/cmake/toolchains/android.cmake @@ -0,0 +1,53 @@ +# Copyright 2019 The libgav1 Authors +# +# 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. + +if(LIBGAV1_CMAKE_TOOLCHAINS_ANDROID_CMAKE_) + return() +endif() # LIBGAV1_CMAKE_TOOLCHAINS_ANDROID_CMAKE_ + +# Additional ANDROID_* settings are available, see: +# https://developer.android.com/ndk/guides/cmake#variables + +if(NOT ANDROID_PLATFORM) + set(ANDROID_PLATFORM android-21) +endif() + +# Choose target architecture with: +# +# -DANDROID_ABI={armeabi-v7a,armeabi-v7a with NEON,arm64-v8a,x86,x86_64} +if(NOT ANDROID_ABI) + set(ANDROID_ABI arm64-v8a) +endif() + +# Force arm mode for 32-bit targets (instead of the default thumb) to improve +# performance. +if(NOT ANDROID_ARM_MODE) + set(ANDROID_ARM_MODE arm) +endif() + +# Toolchain files don't have access to cached variables: +# https://gitlab.kitware.com/cmake/cmake/issues/16170. Set an intermediate +# environment variable when loaded the first time. +if(LIBGAV1_ANDROID_NDK_PATH) + set(ENV{LIBGAV1_ANDROID_NDK_PATH} "${LIBGAV1_ANDROID_NDK_PATH}") +else() + set(LIBGAV1_ANDROID_NDK_PATH "$ENV{LIBGAV1_ANDROID_NDK_PATH}") +endif() + +if(NOT LIBGAV1_ANDROID_NDK_PATH) + message(FATAL_ERROR "LIBGAV1_ANDROID_NDK_PATH not set.") + return() +endif() + +include("${LIBGAV1_ANDROID_NDK_PATH}/build/cmake/android.toolchain.cmake") diff --git a/cmake/toolchains/arm-linux-gnueabihf.cmake b/cmake/toolchains/arm-linux-gnueabihf.cmake new file mode 100644 index 0000000..8051f0d --- /dev/null +++ b/cmake/toolchains/arm-linux-gnueabihf.cmake @@ -0,0 +1,29 @@ +# Copyright 2019 The libgav1 Authors +# +# 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. + +if(LIBGAV1_CMAKE_TOOLCHAINS_ARM_LINUX_GNUEABIHF_CMAKE_) + return() +endif() # LIBGAV1_CMAKE_TOOLCHAINS_ARM_LINUX_GNUEABIHF_CMAKE_ +set(LIBGAV1_CMAKE_TOOLCHAINS_ARM_LINUX_GNUEABIHF_CMAKE_ 1) + +set(CMAKE_SYSTEM_NAME "Linux") + +if("${CROSS}" STREQUAL "") + set(CROSS arm-linux-gnueabihf-) +endif() + +set(CMAKE_CXX_COMPILER ${CROSS}g++) +set(CMAKE_CXX_FLAGS_INIT "-march=armv7-a -marm") +set(CMAKE_SYSTEM_PROCESSOR "armv7") +set(LIBGAV1_NEON_INTRINSICS_FLAG "-mfpu=neon") |