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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,10 @@ sudo xbps-install meson ninja pkg-config git \
```

Vendored dependencies, with no system package needed: `Wuffs`,
`nlohmann/json`, `Luau`, `dr_wav`, `fzy`, `stb_image_resize2`, and Material Color Utilities.
`nlohmann/json`, `Luau`, `dr_wav`, `fzy`, and Material Color Utilities.

Dependencies that are vendored by default, with a meson option to instead use the system package: `md4c`,
`tomlplusplus`
`tomlplusplus`, `stb`

System packages required beyond the Wayland/GL stack: `libwebp` handles WebP decoding and thumbnail encoding. Wuffs
handles the other supported raster image formats. `libqalculate` powers the launcher calculator (arithmetic, unit and
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ mcu_dep = declare_dependency(

# ── Vendored: stb_image_resize2 (header-only) ─────────────────────────────────
stb_dep = declare_dependency(
include_directories: include_directories('third_party/stb', is_system: true),
include_directories: include_directories(get_option('stb_headers'), is_system: true),
)

# ── Vendored: tomlplusplus (header-only) ─────────────────────────────────
Expand Down
1 change: 1 addition & 0 deletions meson_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ option('jemalloc', type: 'feature', value: 'auto', description: 'Use jemalloc on
option('tests', type: 'feature', value: 'auto', description: 'Build unit tests (auto: on for unsanitized debug builds)')
option('system_md4c', type: 'boolean', value: false, description: 'Use system md4c instead of vendored')
option('system_tomlplusplus', type: 'boolean', value: false, description: 'Use system tomlplusplus instead of vendored')
option('stb_headers', type: 'string', value: 'third_party/stb', description: 'Path to stb header files')
option('system_nlohmann_json', type: 'boolean', value: false, description: 'Use system nlohmann json instead of vendored')
Loading