summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Prabowo Kamal <erik@darapsa.org>2025-11-25 17:04:56 +0800
committerErik Prabowo Kamal <erik@darapsa.org>2025-11-25 17:04:56 +0800
commitda95975926d6df09ea37e10d092a1d758086f454 (patch)
tree63b223d991965612c1818f9e3ee5fce2fa4f47a3
parent97dcabd2485fc791972f2a33484e78be2cabca5e (diff)
Upgrade the project to use Qt6HEADmaster
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
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)