build(macos): configure C++ standard and ICU root (#5101)

This commit is contained in:
martona
2026-05-13 19:01:34 -04:00
committed by GitHub
parent 07099901cd
commit f9d1aca72e
7 changed files with 23 additions and 13 deletions

View File

@@ -8,6 +8,13 @@ project(Sunshine VERSION 0.0.0
DESCRIPTION "Self-hosted game stream host for Moonlight"
HOMEPAGE_URL "https://app.lizardbyte.dev/Sunshine")
set(CMAKE_CXX_STANDARD 23)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
if(NOT DEFINED CMAKE_CUDA_STANDARD)
set(CMAKE_CUDA_STANDARD 17)
set(CMAKE_CUDA_STANDARD_REQUIRED ON)
endif()
set(PROJECT_LICENSE "GPL-3.0-only")
set(PROJECT_FQDN "dev.lizardbyte.app.Sunshine")