mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-15 15:49:36 +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
|
# Configure Audacity
|
||||||
cmake -S . \
|
cmake -S . \
|
||||||
-B build \
|
-B build \
|
||||||
-G "${{matrix.config.generator}}"
|
-G "${{matrix.config.generator}}" \
|
||||||
|
-D audacity_use_pch=no
|
||||||
|
|
||||||
# Build Audacity
|
# Build Audacity
|
||||||
cmake --build build --config Release
|
cmake --build build --config Release
|
||||||
@ -283,7 +284,8 @@ jobs:
|
|||||||
# Configure Audacity
|
# Configure Audacity
|
||||||
cmake -S . \
|
cmake -S . \
|
||||||
-B build \
|
-B build \
|
||||||
-G "${{matrix.config.generator}}"
|
-G "${{matrix.config.generator}}" \
|
||||||
|
-D audacity_use_pch=no
|
||||||
|
|
||||||
# Build Audacity
|
# Build Audacity
|
||||||
cmake --build build --config Release
|
cmake --build build --config Release
|
||||||
|
Loading…
x
Reference in New Issue
Block a user