From 4990abc9bd871fd5694d0f55c3420765401535ea Mon Sep 17 00:00:00 2001 From: Mateusz Daniluk <121170681+VeithMetro@users.noreply.github.com> Date: Mon, 4 Nov 2024 12:56:34 +0100 Subject: [PATCH] Remove the architecture specification in the cmake build command --- .github/workflows/MacOS build template.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/MacOS build template.yml b/.github/workflows/MacOS build template.yml index 0a115bd..fe27f50 100644 --- a/.github/workflows/MacOS build template.yml +++ b/.github/workflows/MacOS build template.yml @@ -63,8 +63,8 @@ jobs: - name: Build ThunderInterfaces run: | cmake -G Ninja -S ThunderInterfaces -B ${{matrix.build_type}}/build/ThunderInterfaces \ - -DCMAKE_CXX_FLAGS="-Wall -Wextra -Wpedantic -Werror -m${{matrix.architecture}}" \ - -DCMAKE_C_FLAGS="-Wall -Wextra -Wpedantic -Werror -m${{matrix.architecture}}" \ + -DCMAKE_CXX_FLAGS="-Wall -Wextra -Wpedantic -Werror" \ + -DCMAKE_C_FLAGS="-Wall -Wextra -Wpedantic -Werror" \ -DCMAKE_INSTALL_PREFIX="${{matrix.build_type}}/install/usr" \ -DCMAKE_MODULE_PATH="${PWD}/${{matrix.build_type}}/install/usr/include/WPEFramework/Modules" cmake --build ${{matrix.build_type}}/build/ThunderInterfaces --target install