From 28d6ace780e8877c9d1dbdb9186e0b689107323d Mon Sep 17 00:00:00 2001 From: gfgit Date: Thu, 30 Nov 2023 23:03:45 +0100 Subject: [PATCH] CMake: fix warnings and do not hardcode build type --- CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d4b1832..8bdbda8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,10 +1,8 @@ cmake_minimum_required(VERSION 2.8.11) cmake_policy(VERSION 2.8) -include(GNUInstallDirs) project(lxqt-appswitcher) - -set(CMAKE_BUILD_TYPE Release) +include(GNUInstallDirs) find_package(Qt5 COMPONENTS Core Widgets) find_package(lxqt)