Skip to content

Commit

Permalink
Merge from Perforce 2024-01-31 13:53:32.179101
Browse files Browse the repository at this point in the history
  • Loading branch information
lakulish committed Jan 31, 2024
1 parent fa84e4d commit 86445fd
Show file tree
Hide file tree
Showing 222 changed files with 798 additions and 778 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Steam Audio 4.5.0
# Steam Audio 4.5.1

Valve Corporation

Expand Down
4 changes: 2 additions & 2 deletions fmod/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Copyright 2017 Valve Corporation. All rights reserved. Subject to the following license:
# Copyright 2017-2023 Valve Corporation. Subject to the following license:
# https://valvesoftware.github.io/steam-audio/license.html

cmake_minimum_required(VERSION 3.17)

project(Phonon VERSION 4.5.0)
project(Phonon VERSION 4.5.1)

set(CMAKE_CXX_STANDARD 14)
set(CMAKE_MODULE_PATH "${CMAKE_HOME_DIRECTORY}/build")
Expand Down
8 changes: 4 additions & 4 deletions fmod/build/FindFMOD.cmake
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Copyright 2017 Valve Corporation. All rights reserved. Subject to the following license:
# Copyright 2017-2023 Valve Corporation. Subject to the following license:
# https://valvesoftware.github.io/steam-audio/license.html

include(FindPackageHandleStandardArgs)

find_path(FMOD_INCLUDE_DIR
find_path(FMOD_INCLUDE_DIR
NAMES fmod.h
PATHS ${CMAKE_HOME_DIRECTORY}/include
PATH_SUFFIXES fmod
)

find_package_handle_standard_args(FMOD
FOUND_VAR FMOD_FOUND
find_package_handle_standard_args(FMOD
FOUND_VAR FMOD_FOUND
REQUIRED_VARS FMOD_INCLUDE_DIR
)

Expand Down
2 changes: 1 addition & 1 deletion fmod/build/FindSphinx.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017 Valve Corporation. All rights reserved. Subject to the following license:
# Copyright 2017-2023 Valve Corporation. Subject to the following license:
# https://valvesoftware.github.io/steam-audio/license.html

include(FindPackageHandleStandardArgs)
Expand Down
12 changes: 6 additions & 6 deletions fmod/build/FindSteamAudio.cmake
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Copyright 2017 Valve Corporation. All rights reserved. Subject to the following license:
# Copyright 2017-2023 Valve Corporation. Subject to the following license:
# https://valvesoftware.github.io/steam-audio/license.html

include(FindPackageHandleStandardArgs)
include(SteamAudioHelpers)

get_local_lib_path(IPL_LIB_PATH)

find_path(SteamAudio_INCLUDE_DIR
find_path(SteamAudio_INCLUDE_DIR
NAMES phonon.h
PATHS ${CMAKE_HOME_DIRECTORY}/include
PATH_SUFFIXES phonon
Expand All @@ -18,13 +18,13 @@ if (BUILD_SHARED_LIBS)
PATHS ${IPL_LIB_PATH}
)

find_package_handle_standard_args(SteamAudio
FOUND_VAR SteamAudio_FOUND
find_package_handle_standard_args(SteamAudio
FOUND_VAR SteamAudio_FOUND
REQUIRED_VARS SteamAudio_INCLUDE_DIR
)
else()
find_package_handle_standard_args(SteamAudio
FOUND_VAR SteamAudio_FOUND
find_package_handle_standard_args(SteamAudio
FOUND_VAR SteamAudio_FOUND
REQUIRED_VARS SteamAudio_INCLUDE_DIR SteamAudio_LIBRARY
)
endif()
Expand Down
2 changes: 1 addition & 1 deletion fmod/build/SteamAudioHelpers.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017 Valve Corporation. All rights reserved. Subject to the following license:
# Copyright 2017-2023 Valve Corporation. Subject to the following license:
# https://valvesoftware.github.io/steam-audio/license.html

function (get_local_lib_path LIB_PATH)
Expand Down
2 changes: 1 addition & 1 deletion fmod/build/build.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017 Valve Corporation. All rights reserved. Subject to the following license:
# Copyright 2017-2023 Valve Corporation. Subject to the following license:
# https://valvesoftware.github.io/steam-audio/license.html

import argparse
Expand Down
2 changes: 1 addition & 1 deletion fmod/build/toolchain_android_armv7.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) Valve Corporation. All rights reserved.
# Copyright 2017-2023 Valve Corporation.
#

set(CMAKE_SYSTEM_NAME Android)
Expand Down
2 changes: 1 addition & 1 deletion fmod/build/toolchain_android_armv8.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) Valve Corporation. All rights reserved.
# Copyright 2017-2023 Valve Corporation.
#

set(CMAKE_SYSTEM_NAME Android)
Expand Down
2 changes: 1 addition & 1 deletion fmod/build/toolchain_android_x64.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) Valve Corporation. All rights reserved.
# Copyright 2017-2023 Valve Corporation.
#

set(CMAKE_SYSTEM_NAME Android)
Expand Down
2 changes: 1 addition & 1 deletion fmod/build/toolchain_android_x86.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) Valve Corporation. All rights reserved.
# Copyright 2017-2023 Valve Corporation.
#

set(CMAKE_SYSTEM_NAME Android)
Expand Down
2 changes: 1 addition & 1 deletion fmod/build/toolchain_ios.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) Valve Corporation. All rights reserved.
# Copyright 2017-2023 Valve Corporation.
#

set(CMAKE_SYSTEM_NAME iOS)
Expand Down
2 changes: 1 addition & 1 deletion fmod/doc/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2017 Valve Corporation. All rights reserved. Subject to the following license:
# Copyright 2017-2023 Valve Corporation. Subject to the following license:
# https://valvesoftware.github.io/steam-audio/license.html

configure_file(${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
Expand Down
2 changes: 1 addition & 1 deletion fmod/doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# -- Project information -----------------------------------------------------

project = 'Steam Audio FMOD Studio Integration'
copyright = '2021, Valve Corporation'
copyright = '2017-2023, Valve Corporation'
author = 'Valve Corporation'


Expand Down
Loading

0 comments on commit 86445fd

Please sign in to comment.