cmake: Apply gersemi 0.25 formatting

This commit is contained in:
PatTheMav
2026-01-09 15:47:12 -05:00
committed by Ryan Foster
parent 003bfcb65d
commit 4625dda66d
21 changed files with 25 additions and 50 deletions
+1 -2
View File
@@ -92,8 +92,7 @@ function(_check_dependencies)
if(EXISTS "${dependencies_dir}/.dependency_${dependency}_${arch}.sha256")
file(
READ
"${dependencies_dir}/.dependency_${dependency}_${arch}.sha256"
READ "${dependencies_dir}/.dependency_${dependency}_${arch}.sha256"
OBS_DEPENDENCY_${dependency}_${arch}_HASH
)
endif()
+1 -2
View File
@@ -227,8 +227,7 @@ function(find_qt_plugins)
endif()
list(
APPEND
qt_plugins_Core
APPEND qt_plugins_Core
platforms
printsupport
styles
+1 -2
View File
@@ -37,8 +37,7 @@ find_path(AMF_INCLUDE_DIR NAMES AMF/core/Factory.h PATHS /usr/include /usr/local
if(EXISTS "${AMF_INCLUDE_DIR}/AMF/core/Version.h")
file(
STRINGS
"${AMF_INCLUDE_DIR}/AMF/core/Version.h"
STRINGS "${AMF_INCLUDE_DIR}/AMF/core/Version.h"
_version_string
REGEX "^.*VERSION_(MAJOR|MINOR|RELEASE|BUILD_NUM)[ \t]+[0-9]+[ \t]*$"
)
+1 -2
View File
@@ -50,8 +50,7 @@ if(PC_Asio_VERSION VERSION_GREATER 0)
set(Asio_VERSION ${PC_Asio_VERSION})
elseif(EXISTS "${Asio_INCLUDE_DIR}/asio/version.hpp")
file(
STRINGS
"${Asio_INCLUDE_DIR}/asio/version.hpp"
STRINGS "${Asio_INCLUDE_DIR}/asio/version.hpp"
_version_string
REGEX "#define[ \t]+ASIO_VERSION[ \t]+[0-9]+[ \t]+\\/\\/[ \t][0-9]+\\.[0-9]+\\.[0-9]+"
)
+1 -2
View File
@@ -71,8 +71,7 @@ find_path(
if(CEF_INCLUDE_DIR)
file(
STRINGS
"${CEF_INCLUDE_DIR}/cef_version.h"
STRINGS "${CEF_INCLUDE_DIR}/cef_version.h"
_VERSION_STRING
REGEX "^.*CEF_VERSION_(MAJOR|MINOR|PATCH)[ \t]+[0-9]+[ \t]*$"
)
+4 -8
View File
@@ -202,16 +202,14 @@ macro(FFmpeg_check_version)
elseif(EXISTS "${FFmpeg_${component}_INCLUDE_DIR}/${component_libname}/version.h")
if(EXISTS "${FFmpeg_${component}_INCLUDE_DIR}/${component_libname}/version_major.h")
file(
STRINGS
"${FFmpeg_${component}_INCLUDE_DIR}/${component_libname}/version_major.h"
STRINGS "${FFmpeg_${component}_INCLUDE_DIR}/${component_libname}/version_major.h"
_version_string
REGEX "^.*VERSION_MAJOR[ \t]+[0-9]+[ \t]*$"
)
string(REGEX REPLACE ".*VERSION_MAJOR[ \t]+([0-9]+).*" "\\1" _version_major "${_version_string}")
file(
STRINGS
"${FFmpeg_${component}_INCLUDE_DIR}/${component_libname}/version.h"
STRINGS "${FFmpeg_${component}_INCLUDE_DIR}/${component_libname}/version.h"
_version_string
REGEX "^.*VERSION_(MINOR|MICRO)[ \t]+[0-9]+[ \t]*$"
)
@@ -219,8 +217,7 @@ macro(FFmpeg_check_version)
string(REGEX REPLACE ".*VERSION_MICRO[ \t]+([0-9]+).*" "\\1" _version_patch "${_version_string}")
else()
file(
STRINGS
"${FFmpeg_${component}_INCLUDE_DIR}/${component_libname}/version.h"
STRINGS "${FFmpeg_${component}_INCLUDE_DIR}/${component_libname}/version.h"
_version_string
REGEX "^.*VERSION_(MAJOR|MINOR|MICRO)[ \t]+[0-9]+[ \t]*$"
)
@@ -292,8 +289,7 @@ endif()
if(EXISTS "${FFmpeg_avutil_INCLUDE_DIR}/libavutil/ffversion.h")
file(
STRINGS
"${FFmpeg_avutil_INCLUDE_DIR}/libavutil/ffversion.h"
STRINGS "${FFmpeg_avutil_INCLUDE_DIR}/libavutil/ffversion.h"
_version_string
REGEX "^.*FFMPEG_VERSION[ \t]+\"n?[0-9a-z\\~+.-]+\"[ \t]*$"
)
+1 -2
View File
@@ -50,8 +50,7 @@ if(PC_FFnvcodec_VERSION VERSION_GREATER 0)
set(FFnvcodec_VERSION ${PC_FFnvcodec_VERSION})
elseif(EXISTS "${FFnvcodec_INCLUDE_DIR}/ffnvcodec/nvEncodeAPI.h")
file(
STRINGS
"${FFnvcodec_INCLUDE_DIR}/ffnvcodec/nvEncodeAPI.h"
STRINGS "${FFnvcodec_INCLUDE_DIR}/ffnvcodec/nvEncodeAPI.h"
_version_string
REGEX "^.*NVENCAPI_(MAJOR|MINOR)_VERSION[ \t]+[0-9]+[ \t]*$"
)
+1 -2
View File
@@ -122,8 +122,7 @@ unset(LibAJANTV2_ERROR_REASON)
if(LibAJANTV2_FOUND)
list(
APPEND
LibAJANTV2_INCLUDE_DIRS
APPEND LibAJANTV2_INCLUDE_DIRS
${LibAJANTV2_INCLUDE_DIR}
${LibAJANTV2_INCLUDE_DIR}/ajaanc
${LibAJANTV2_INCLUDE_DIR}/ajabase
+1 -2
View File
@@ -64,8 +64,7 @@ if(PC_LibVLC_VERSION VERSION_GREATER 0)
set(LibVLC_VERSION ${PC_LibVLC_VERSION})
elseif(EXISTS "${LibVLC_INCLUDE_DIR}/libvlc_version.h")
file(
STRINGS
"${LibVLC_INCLUDE_DIR}/libvlc_version.h"
STRINGS "${LibVLC_INCLUDE_DIR}/libvlc_version.h"
_VERSION_STRING
REGEX "^.*LIBVLC_VERSION_(MAJOR|MINOR|PATCH)[ \t]+[0-9]+[ \t]*$"
)
+1 -2
View File
@@ -79,8 +79,7 @@ if(PC_Libva_VERSION VERSION_GREATER 0)
set(Libva_VERSION ${PC_Libva_VERSION})
elseif(EXISTS "${Libva_INCLUDE_DIR}/va_version.h")
file(
STRINGS
"${Libva_INCLUDE_DIR}/va_version.h"
STRINGS "${Libva_INCLUDE_DIR}/va_version.h"
_VERSION_STRING
REGEX "^.*(MAJOR|MINOR|MICRO)_VERSION[ \t]+[0-9]+[ \t]*$"
)
+2 -4
View File
@@ -109,8 +109,7 @@ if(PC_MbedTLS_VERSION VERSION_GREATER 0)
set(MbedTLS_VERSION ${PC_MbedTLS_VERSION})
elseif(EXISTS "${MbedTLS_INCLUDE_DIR}/mbedtls/build_info.h")
file(
STRINGS
"${MbedTLS_INCLUDE_DIR}/mbedtls/build_info.h"
STRINGS "${MbedTLS_INCLUDE_DIR}/mbedtls/build_info.h"
_VERSION_STRING
REGEX "#define[ \t]+MBEDTLS_VERSION_STRING[ \t]+.+"
)
@@ -123,8 +122,7 @@ elseif(EXISTS "${MbedTLS_INCLUDE_DIR}/mbedtls/build_info.h")
)
elseif(EXISTS "${MbedTLS_INCLUDE_DIR}/mbedtls/version.h")
file(
STRINGS
"${MbedTLS_INCLUDE_DIR}/mbedtls/version.h"
STRINGS "${MbedTLS_INCLUDE_DIR}/mbedtls/version.h"
_VERSION_STRING
REGEX "#define[ \t]+MBEDTLS_VERSION_STRING[ \t]+.+"
)
+1 -2
View File
@@ -74,8 +74,7 @@ if(PC_PipeWire_VERSION VERSION_GREATER 0)
set(PipeWire_VERSION ${PC_PipeWire_VERSION})
elseif(EXISTS "${PipeWire_INCLUDE_DIR}/pipewire/version.h")
file(
STRINGS
"${PipeWire_INCLUDE_DIR}/pipewire/version.h"
STRINGS "${PipeWire_INCLUDE_DIR}/pipewire/version.h"
_version_string
REGEX "^.*PW_(MAJOR|MINOR|MICRO)[ \t]+[0-9]+[ \t]*$"
)
+1 -2
View File
@@ -63,8 +63,7 @@ if(PC_PulseAudio_VERSION VERSION_GREATER 0)
set(PulseAudio_VERSION ${PC_PulseAudio_VERSION})
elseif(EXISTS "${PulseAudio_INCLUDE_DIR}/version.h")
file(
STRINGS
"${PulseAudio_INCLUDE_DIR}/version.h"
STRINGS "${PulseAudio_INCLUDE_DIR}/version.h"
_VERSION_STRING
REGEX "^.*pa_get_headers_version\\(\\)[\t ]+\\(\".*\"\\)[ \t]*$"
)
+1 -2
View File
@@ -48,8 +48,7 @@ find_path(
if(EXISTS "${SIMDe_INCLUDE_DIR}/simde/simde-common.h")
file(
STRINGS
"${SIMDe_INCLUDE_DIR}/simde/simde-common.h"
STRINGS "${SIMDe_INCLUDE_DIR}/simde/simde-common.h"
_version_string
REGEX "^.*VERSION_(MAJOR|MINOR|MICRO)[ \t]+[0-9]+[ \t]*$"
)
+1 -2
View File
@@ -37,8 +37,7 @@ find_path(Uthash_INCLUDE_DIR NAMES uthash.h PATHS /usr/include /usr/local/includ
if(EXISTS "${Uthash_INCLUDE_DIR}/uthash.h")
file(
STRINGS
"${Uthash_INCLUDE_DIR}/uthash.h"
STRINGS "${Uthash_INCLUDE_DIR}/uthash.h"
_version_string
REGEX "#define[ \t]+UTHASH_VERSION[ \t]+[0-9]+\\.[0-9]+\\.[0-9]+"
)
+1 -2
View File
@@ -42,8 +42,7 @@ find_path(
if(EXISTS "${Websocketpp_INCLUDE_DIR}/websocketpp/version.hpp")
file(
STRINGS
"${Websocketpp_INCLUDE_DIR}/websocketpp/version.hpp"
STRINGS "${Websocketpp_INCLUDE_DIR}/websocketpp/version.hpp"
_version_string
REGEX "^.*(major|minor|patch)_version[ \t]+=[ \t]+[0-9]+"
)
+1 -2
View File
@@ -227,8 +227,7 @@ function(target_install_resources target)
file(GLOB_RECURSE data_files "${CMAKE_CURRENT_SOURCE_DIR}/data/*")
foreach(data_file IN LISTS data_files)
cmake_path(
RELATIVE_PATH
data_file
RELATIVE_PATH data_file
BASE_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/data/"
OUTPUT_VARIABLE relative_path
)
+1 -2
View File
@@ -357,8 +357,7 @@ function(target_install_resources target)
list(FILTER data_files EXCLUDE REGEX "\\.DS_Store$")
foreach(data_file IN LISTS data_files)
cmake_path(
RELATIVE_PATH
data_file
RELATIVE_PATH data_file
BASE_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/data/"
OUTPUT_VARIABLE relative_path
)
+1 -2
View File
@@ -305,8 +305,7 @@ function(target_install_resources target)
file(GLOB_RECURSE data_files "${CMAKE_CURRENT_SOURCE_DIR}/data/*")
foreach(data_file IN LISTS data_files)
cmake_path(
RELATIVE_PATH
data_file
RELATIVE_PATH data_file
BASE_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/data/"
OUTPUT_VARIABLE relative_path
)
+1 -2
View File
@@ -356,8 +356,7 @@ set(
if(OS_WINDOWS)
list(
APPEND
public_headers
APPEND public_headers
util/threading-windows.h
util/windows/ComPtr.hpp
util/windows/CoTaskMemPtr.hpp
@@ -31,8 +31,7 @@ swig_add_library(obspython LANGUAGE python TYPE MODULE SOURCES obspython.i)
add_library(OBS::python ALIAS obspython)
file(
GENERATE OUTPUT
$<$<PLATFORM_ID:Windows>:$<CONFIG>/>obspython.h
GENERATE OUTPUT $<$<PLATFORM_ID:Windows>:$<CONFIG>/>obspython.h
CONTENT "#pragma once\n\n#define PYTHON_LIB \"$<TARGET_LINKER_FILE_NAME:Python::Python>\"\n"
)