mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-29 23:29:41 +02:00
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:
parent
49c95973cd
commit
97c5a9e0c2
6
.github/workflows/cmake_build.yml
vendored
6
.github/workflows/cmake_build.yml
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user