[新增目标色彩空间设置功能]:在播放器中增加了目标色彩空间的设置选项,允许用户根据需要选择不同的色彩空间。 #219
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CMake build | |
on: | |
push: | |
paths-ignore: | |
- 'doc/**' | |
- 'packaging/**' | |
- '.clang*' | |
- '.gitignore' | |
- 'LICENSE' | |
- 'README*' | |
pull_request: | |
paths-ignore: | |
- 'doc/**' | |
- 'packaging/**' | |
- '.clang*' | |
- '.gitignore' | |
- 'LICENSE' | |
- 'README*' | |
env: | |
MACOSX_DEPLOYMENT_TARGET: 11.0 | |
jobs: | |
build: | |
name: Build | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- windows-latest | |
- macos-latest | |
- ubuntu-latest | |
build_type: | |
- "RelWithDebInfo" | |
generators: | |
- "Ninja" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- uses: ./.github/actions/install-dependencies | |
with: | |
os_name: ${{ matrix.os }} | |
- name: Configure and build windows | |
if: startsWith(matrix.os, 'windows') | |
shell: pwsh | |
run: | | |
.\scripts\windows\setVsDev.ps1 | |
cmake ` | |
-S . ` | |
-B ./build ` | |
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ` | |
-DBUILD_MPV=OFF ` | |
-G "${{ matrix.generators }}" | |
cmake --build ./build --config ${{ matrix.build_type }} | |
- name: Configure and build on ubuntu or macos | |
if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'macos') | |
shell: bash | |
run: | | |
cmake \ | |
-S . \ | |
-B ./build \ | |
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \ | |
-G "${{ matrix.generators }}" | |
cmake --build ./build --config ${{ matrix.build_type }} | |