Change: disable precompiled headers on Linux (GCC - Dedicated) target to ensure those still build

This commit is contained in:
Rubidium 2023-05-07 19:22:30 +02:00 committed by rubidium42
parent 2955ff33d7
commit 192ed55462
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ jobs:
- name: GCC - Dedicated
compiler: gcc
cxxcompiler: g++
extra-cmake-parameters: -DOPTION_DEDICATED=ON -DCMAKE_CXX_FLAGS_INIT="-DRANDOM_DEBUG"
extra-cmake-parameters: -DOPTION_DEDICATED=ON -DCMAKE_CXX_FLAGS_INIT="-DRANDOM_DEBUG" -DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON
# Compile without SDL / SDL2, as that should compile fine too.
name: Linux (${{ matrix.name }})