obs-studio/build-aux
2023-07-17 19:49:18 +02:00
..
.functions CI: Add zsh-based build framework files for macOS 2023-07-17 19:49:18 +02:00
modules CI,build-aux: Add Libqrcodegencpp on Linux 2023-07-14 15:32:04 -04:00
.run-format.zsh CI: Add zsh-based build framework files for macOS 2023-07-17 19:49:18 +02:00
com.obsproject.Studio.json CI,build-aux: Add Libqrcodegencpp on Linux 2023-07-14 15:32:04 -04:00
format-manifest.py build-aux,CI: Add format to Flatpak manifest 2023-05-13 18:26:17 -07:00
README.md build-aux,CI: Add format to Flatpak manifest 2023-05-13 18:26:17 -07:00
run-clang-format CI: Add zsh-based build framework files for macOS 2023-07-17 19:49:18 +02:00
run-cmake-format CI: Add zsh-based build framework files for macOS 2023-07-17 19:49:18 +02:00
run-swift-format CI: Add zsh-based build framework files for macOS 2023-07-17 19:49:18 +02:00

build-aux folder

This folder contains:

  • The Flatpak manifest used to build OBS Studio
  • The script format-manifest.py which format manifest JSON files

OBS Studio Flatpak Manifest

The manifest is composed of multiple files:

  • The main manifest com.obsproject.Studio.json
  • The modules folder which contains OBS Studio dependencies modules

Manifest modules

Modules are ordered/dispatched in numbered categories following a short list of rules:

  • A module must not depend on another module from the same category, so a module can only depend on modules from lower numbered categories.
  • A module without dependencies must be placed in the highest numbered category in use, excluding categories meant for specific types of dependency.

Actual categories:

  • 99-: CEF
  • 90-: Headers-only libraries that are dependencies of only OBS Studio
  • 50-: Modules that are dependencies of only OBS Studio
  • 40-: Modules that are dependencies of the 50- category
  • 30-: FFmpeg
  • 20-: Modules that are dependencies of FFmpeg
  • 10-: Modules that are dependencies of the 20- category