mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-14 17:14:07 +01: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:
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
|
||||||
|
|||||||
Reference in New Issue
Block a user