From a230e5ff3ec09dd70f3291c2f0ae2f01eff748d3 Mon Sep 17 00:00:00 2001 From: Chantepierre Date: Wed, 26 Nov 2025 09:18:51 +0100 Subject: [PATCH] Updates README.md and CI to explicitly pass DFTFringe.pro to qmake for linux builds --- .github/workflows/build-linux-clazy.yml | 2 +- .github/workflows/build-linux.yml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-linux-clazy.yml b/.github/workflows/build-linux-clazy.yml index 27227ffe..cac8dd19 100644 --- a/.github/workflows/build-linux-clazy.yml +++ b/.github/workflows/build-linux-clazy.yml @@ -31,7 +31,7 @@ jobs: /usr/lib/qt6/bin/qmake make -j4 sudo make install - - run: /usr/lib/qt6/bin/qmake -spec linux-clang QMAKE_CXX="clazy" + - run: /usr/lib/qt6/bin/qmake DFTFringe.pro -spec linux-clang QMAKE_CXX="clazy" - uses: ammaraskar/gcc-problem-matcher@master # ignore noisy dirs from QT files itself # all level 1 checks but ignore clazy-no-connect-by-name diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index be272e1a..fae9f13d 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -26,7 +26,7 @@ jobs: - run: cd qwt-${{env.QWT_version}} ; /usr/lib/qt6/bin/qmake - run: cd qwt-${{env.QWT_version}} ; make -j4 - run: cd qwt-${{env.QWT_version}} ; sudo make install - - run: /usr/lib/qt6/bin/qmake + - run: /usr/lib/qt6/bin/qmake DFTFringe.pro - uses: ammaraskar/gcc-problem-matcher@master - run: echo "::add-matcher::.github/matcher/uic_matcher.json" - run: make -j4 diff --git a/README.md b/README.md index 79f0b2ed..36ef80cc 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ cd qwt-6.3.0 make -j4 sudo make install cd .. -/usr/lib/qt6/bin/qmake +/usr/lib/qt6/bin/qmake DFTFringe.pro make -j4 ```