From da95975926d6df09ea37e10d092a1d758086f454 Mon Sep 17 00:00:00 2001 From: Erik Prabowo Kamal Date: Tue, 25 Nov 2025 17:04:56 +0800 Subject: Upgrade the project to use Qt6 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 84a0aec..136d661 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.5) project(interchange) set(CMAKE_AUTOMOC ON) -find_package(Qt5Core) +find_package(Qt6Core) set(HDRS ${PROJECT_NAME}/catalog.hxx ${PROJECT_NAME}/product.hxx @@ -29,7 +29,7 @@ else() add_library(q${PROJECT_NAME} SHARED ${SRCS}) endif() target_link_libraries(q${PROJECT_NAME} - ${Qt5Core_LIBRARIES} + ${Qt6Core_LIBRARIES} interchange ) include(GNUInstallDirs) -- cgit v1.2.3