mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-16 14:09:43 +00:00
fc5314b1b6
Some checks are pending
CI / GitHub Env Debug (push) Waiting to run
CI / Setup Release (push) Waiting to run
CI / Setup Flatpak Matrix (push) Waiting to run
CI / Linux Flatpak (push) Blocked by required conditions
CI / Linux ${{ matrix.type }} (--appimage-build, 22.04, AppImage) (push) Blocked by required conditions
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (macos, 13) (push) Blocked by required conditions
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (macos, 14) (push) Blocked by required conditions
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (ubuntu, latest) (push) Blocked by required conditions
CI / Homebrew (${{ matrix.os_name }}-${{ matrix.os_version }}${{ matrix.release == true && ' (Release)' || '' }}) (ubuntu, latest, true) (push) Blocked by required conditions
CI / Macports (macOS-${{ matrix.os_version }}) (13, true) (push) Blocked by required conditions
CI / Macports (macOS-${{ matrix.os_version }}) (14) (push) Blocked by required conditions
CI / Windows (push) Blocked by required conditions
CI Docker / Check Dockerfiles (push) Waiting to run
CI Docker / Setup Release (push) Blocked by required conditions
CI Docker / Docker${{ matrix.tag }} (push) Blocked by required conditions
CodeQL / Get language matrix (push) Waiting to run
CodeQL / Analyze (${{ matrix.name }}) (push) Blocked by required conditions
Build GH-Pages / update_pages (push) Waiting to run
Revert "build(docs): parallelize generation of dot graphs (#3361)"
This reverts commit 39bab450de
.
67 lines
2.0 KiB
Plaintext
67 lines
2.0 KiB
Plaintext
# This file describes the settings to be used by the documentation system
|
|
# doxygen (www.doxygen.org) for a project.
|
|
#
|
|
# All text after a double hash (##) is considered a comment and is placed in
|
|
# front of the TAG it is preceding.
|
|
#
|
|
# All text after a single hash (#) is considered a comment and will be ignored.
|
|
# The format is:
|
|
# TAG = value [value, ...]
|
|
# For lists, items can also be appended using:
|
|
# TAG += value [value, ...]
|
|
# Values that contain spaces should be placed between quotes (\" \").
|
|
#
|
|
# Note:
|
|
#
|
|
# Use doxygen to compare the used configuration file with the template
|
|
# configuration file:
|
|
# doxygen -x [configFile]
|
|
# Use doxygen to compare the used configuration file with the template
|
|
# configuration file without replacing the environment variables or CMake type
|
|
# replacement variables:
|
|
# doxygen -x_noenv [configFile]
|
|
|
|
# project metadata
|
|
DOCSET_BUNDLE_ID = dev.lizardbyte.Sunshine
|
|
DOCSET_PUBLISHER_ID = dev.lizardbyte.Sunshine.documentation
|
|
PROJECT_BRIEF = "Self-hosted game stream host for Moonlight."
|
|
PROJECT_ICON = ../sunshine.ico
|
|
PROJECT_LOGO = ../sunshine.png
|
|
PROJECT_NAME = Sunshine
|
|
|
|
# project specific settings
|
|
DOT_GRAPH_MAX_NODES = 60
|
|
IMAGE_PATH = ../docs/images
|
|
INCLUDE_PATH = ../third-party/build-deps/dist/Linux-x86_64/include/
|
|
PREDEFINED += SUNSHINE_BUILD_WAYLAND
|
|
PREDEFINED += SUNSHINE_TRAY=1
|
|
|
|
# TODO: Enable this when we have complete documentation
|
|
WARN_IF_UNDOCUMENTED = NO
|
|
|
|
# files and directories to process
|
|
USE_MDFILE_AS_MAINPAGE = ../README.md
|
|
INPUT = ../README.md \
|
|
getting_started.md \
|
|
changelog.md \
|
|
../DOCKER_README.md \
|
|
third_party_packages.md \
|
|
gamestream_migration.md \
|
|
legal.md \
|
|
configuration.md \
|
|
app_examples.md \
|
|
guides.md \
|
|
performance_tuning.md \
|
|
api.md \
|
|
troubleshooting.md \
|
|
building.md \
|
|
contributing.md \
|
|
../third-party/doxyconfig/docs/source_code.md \
|
|
../src
|
|
|
|
# extra css
|
|
HTML_EXTRA_STYLESHEET += doc-styles.css
|
|
|
|
# extra js
|
|
HTML_EXTRA_FILES += configuration.js
|