From 698f374e5e56b64e539c926e43dbcbbbbbc0e961 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 26 Oct 2025 10:20:17 +0200 Subject: [PATCH] Set build type to release --- pkg.info | 2 +- source.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg.info b/pkg.info index 276cba4..4b4bfe1 100644 --- a/pkg.info +++ b/pkg.info @@ -1,7 +1,7 @@ name: qt6-wayland description: Provides APIs for Wayland version: 6.10.0 -revision: 1 +revision: 2 url: https://www.qt.io/ license: GPL3-only with Qt-GPL-exception-1.0,LGPL3-only,GPL2-or-later architecture: any diff --git a/source.sh b/source.sh index 1b1bf90..14063ff 100644 --- a/source.sh +++ b/source.sh @@ -5,7 +5,7 @@ # The build function is executed in the source directory # This function is used to compile the source code build() { - cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_MESSAGE_LOG_LEVEL=STATUS + cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DCMAKE_MESSAGE_LOG_LEVEL=STATUS cmake --build build }