From 97c5a9e0c21dd7ec3c0282551b53427a1ebf9cb6 Mon Sep 17 00:00:00 2001 From: Leland Lucius Date: Tue, 26 May 2020 20:53:14 -0500 Subject: [PATCH] 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. --- .github/workflows/cmake_build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake_build.yml b/.github/workflows/cmake_build.yml index 37dd40ed2..d13ab7859 100644 --- a/.github/workflows/cmake_build.yml +++ b/.github/workflows/cmake_build.yml @@ -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