From 3a306fc6df4f71bec56c5485728dd7d6aab28242 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 26 Oct 2025 09:40:27 +0200 Subject: [PATCH] Set build type to release --- pkg.info | 3 ++- source.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg.info b/pkg.info index 9ad6d34..f706bf9 100644 --- a/pkg.info +++ b/pkg.info @@ -1,7 +1,7 @@ name: qt6-tools description: A cross-platform application and UI framework (Development Tools, QtHelp) version: 6.10.0 -revision: 1 +revision: 2 url: https://www.qt.io/ license: FDL,GPL3,LGPL3,custom architecture: any @@ -20,6 +20,7 @@ make_depends: - git - llvm - qt6-declarative + - vulkan-headers downloads: - url: https://code.qt.io/qt/qttools.git type: git diff --git a/source.sh b/source.sh index 54a3928..7eaf24d 100644 --- a/source.sh +++ b/source.sh @@ -13,7 +13,7 @@ prepare() { # 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 -DINSTALL_PUBLICBINDIR=usr/bin -DCMAKE_MESSAGE_LOG_LEVEL=STATUS + cmake -B build -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DINSTALL_PUBLICBINDIR=usr/bin -DCMAKE_MESSAGE_LOG_LEVEL=STATUS cmake --build build }