Disable precompiled headers for Linux and Mac

This should catch any missing include directives.  Windows
will have to come later as it needs a lot of work.  It's
been using PCHs forever, so we've gotten away with a lot
of missing includes.
This commit is contained in:
Leland Lucius 2020-05-26 20:53:14 -05:00
parent 49c95973cd
commit 97c5a9e0c2
1 changed files with 4 additions and 2 deletions

View File

@ -228,7 +228,8 @@ jobs:
# Configure Audacity
cmake -S . \
-B build \
-G "${{matrix.config.generator}}"
-G "${{matrix.config.generator}}" \
-D audacity_use_pch=no
# Build Audacity
cmake --build build --config Release
@ -283,7 +284,8 @@ jobs:
# Configure Audacity
cmake -S . \
-B build \
-G "${{matrix.config.generator}}"
-G "${{matrix.config.generator}}" \
-D audacity_use_pch=no
# Build Audacity
cmake --build build --config Release