Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ jobs:
--apple-id "${APPLE_ID}" \
--team-id "${APPLE_TEAM_ID}" \
--password "${APPLE_NOTARYTOOL_PASSWORD}" \
--wait
--wait \
--timeout 15m
xcrun stapler staple -v build/cpack_artifacts/Sunshine.dmg
fi
fi
Expand Down
23 changes: 21 additions & 2 deletions cmake/dependencies/FindOpus.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ set(Opus_ROOT_DIR # cmake-lint: disable=C0103
"${Opus_ROOT_DIR}"
CACHE PATH "Root to search for opus")

option(OPUS_USE_STATIC "Prefer linking against a static Opus library" OFF)

# Todo: handle in-tree/fetch-content builds?

if(NOT OPUS_FOUND)
Expand All @@ -62,6 +64,17 @@ if(NOT ANDROID)
endif()
endif()

set(_opus_library_names opus)
if(OPUS_USE_STATIC)
set(_opus_library_names libopus opus)
endif()

# Temporarily prefer static suffixes when requested.
set(_old_find_suffixes "${CMAKE_FIND_LIBRARY_SUFFIXES}")
if(OPUS_USE_STATIC)
set(CMAKE_FIND_LIBRARY_SUFFIXES ".a" ".lib" ${_old_find_suffixes})
endif()

find_path(
Opus_INCLUDE_DIR
NAMES opus/opus.h
Expand All @@ -70,11 +83,13 @@ find_path(
PATH_SUFFIXES include)
find_library(
Opus_LIBRARY
NAMES opus
NAMES ${_opus_library_names}
PATHS ${Opus_ROOT_DIR}
HINTS ${PC_opus_LIBRARY_DIRS}
PATH_SUFFIXES lib)

set(CMAKE_FIND_LIBRARY_SUFFIXES "${_old_find_suffixes}")

include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Opus REQUIRED_VARS Opus_LIBRARY
Opus_INCLUDE_DIR)
Expand All @@ -85,7 +100,11 @@ if(Opus_FOUND)
add_library(Opus::opus ALIAS ${Opus_LIBRARY})
else()
# we want an imported target
add_library(Opus::opus UNKNOWN IMPORTED)
if(OPUS_USE_STATIC)
add_library(Opus::opus STATIC IMPORTED)
else()
add_library(Opus::opus UNKNOWN IMPORTED)
endif()

set_target_properties(
Opus::opus
Expand Down
1 change: 1 addition & 0 deletions cmake/dependencies/common.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ include_directories(SYSTEM ${MINIUPNP_INCLUDE_DIRS})
include("${CMAKE_MODULE_PATH}/dependencies/ffmpeg.cmake")

# Opus
set(OPUS_USE_STATIC ON CACHE BOOL "Static linking for libopus")
include("${CMAKE_MODULE_PATH}/dependencies/FindOpus.cmake")

# platform specific dependencies
Expand Down
12 changes: 10 additions & 2 deletions scripts/macos_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ build_docs="OFF"
build_tests="ON"
build_type="Release"
sign_app="true"
notarize="true"

# environment variables
# BUILD_VERSION should be empty or cmake will assume a CI build
Expand Down Expand Up @@ -66,6 +67,7 @@ Options:
--build-docs Build docs.
--skip-tests Don't build the test suite.
--skip-codesign Don't sign/notarize the bundle.
--skip-notarize Don't notarize the dmg.

Steps:
deps Install dependencies only
Expand Down Expand Up @@ -147,8 +149,11 @@ function run_step_dmg() {

cpack -G DragNDrop --config "${build_dir}/CPackConfig.cmake" --verbose

if [[ -n "${sign_app}" ]]; then
xcrun notarytool submit "${build_dir}/cpack_artifacts/Sunshine.dmg" --keychain-profile "notarytool-password" --wait
if [[ -n "${sign_app}" && -n "${notarize}" ]]; then
time xcrun notarytool submit "${build_dir}/cpack_artifacts/Sunshine.dmg" \
--keychain-profile "notarytool-password" \
--wait \
--timeout 15m
xcrun stapler staple -v "${build_dir}/cpack_artifacts/Sunshine.dmg"
fi
return 0
Expand Down Expand Up @@ -216,6 +221,9 @@ while getopts ":h-:" opt; do
skip-codesign)
sign_app=""
;;
skip-notarize)
notarize=""
;;
*)
echo "Invalid option: --${OPTARG}" 1>&2
_usage 1
Expand Down
Loading