mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 07:55:07 +01:00
7e938fcdd9
Whereas previous efforts were focused on the user-facing side, this commit replaces Citra references which are present in the codebase itself. This should be the last time a change like this is ever necessary.
31 lines
897 B
Bash
Executable File
31 lines
897 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
if [ "$TARGET" = "appimage" ]; then
|
|
export EXTRA_CMAKE_FLAGS=(-DCMAKE_LINKER=/etc/bin/ld.lld)
|
|
# Bundle required QT wayland libraries
|
|
export EXTRA_QT_PLUGINS="waylandcompositor"
|
|
export EXTRA_PLATFORM_PLUGINS="libqwayland-egl.so;libqwayland-generic.so"
|
|
else
|
|
# For the linux-fresh verification target, verify compilation without PCH as well.
|
|
export EXTRA_CMAKE_FLAGS=(-DLIME3DS_USE_PRECOMPILED_HEADERS=OFF)
|
|
fi
|
|
|
|
mkdir build && cd build
|
|
cmake .. -G Ninja \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DCMAKE_C_COMPILER_LAUNCHER=ccache \
|
|
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache \
|
|
-DCMAKE_CXX_COMPILER=clang++-18 \
|
|
-DCMAKE_C_COMPILER=clang-18 \
|
|
"${EXTRA_CMAKE_FLAGS[@]}" \
|
|
-DENABLE_QT_TRANSLATION=ON \
|
|
-DUSE_DISCORD_PRESENCE=ON
|
|
ninja
|
|
strip -s bin/Release/*
|
|
|
|
if [ "$TARGET" = "appimage" ]; then
|
|
ninja bundle
|
|
fi
|
|
ccache -s -v
|
|
ctest -VV -C Release
|