We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d473bc0 commit 44788b7Copy full SHA for 44788b7
.github/scripts/Linux/install_sdl.sh
@@ -6,6 +6,11 @@ dir=$(dirname "$0")
6
7
# build dir that will be restored from cache
8
cache_dir=/var/tmp/sdl
9
+features="-DSDL_KMSDRM=ON\
10
+ -DSDL_OPENGL=ON\
11
+ -DSDL_VULKAN=ON\
12
+ -DSDL_WAYLAND=ON\
13
+ -DSDL_X11=ON"
14
15
# install the deps - runs always (regardless the cache)
16
deps() {
@@ -33,7 +38,8 @@ build_install() {
33
38
34
39
git clone --recurse-submodules --depth 1\
35
40
https://github.com/Fluidsynth/fluidsynth
36
- cmake -S fluidsynth -B fluidsynth/build
41
+ # shellcheck disable=SC2086 # intentional
42
+ cmake $features -S fluidsynth -B fluidsynth/build
37
43
cmake --build fluidsynth/build -j "$(nproc)"
44
sudo cmake --install fluidsynth/build
45
}
0 commit comments