Lime3DS/.ci/linux.sh
OpenSauce04 0a5536aebe Revert "bundle qt wayland into appimage by rtiangha (#212)"
This reverts commit 8fd0fb8bf0.

See #496 for more details
2024-10-14 22:11:31 +01:00

27 lines
728 B
Bash
Executable file

#!/bin/bash -ex
if [ "$TARGET" = "appimage" ]; then
export EXTRA_CMAKE_FLAGS=(-DCMAKE_LINKER=/etc/bin/ld.lld)
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