diff options
| author | Erik Prabowo Kamal <erik@darapsa.org> | 2025-11-25 17:04:56 +0800 |
|---|---|---|
| committer | Erik Prabowo Kamal <erik@darapsa.org> | 2025-11-25 17:04:56 +0800 |
| commit | da95975926d6df09ea37e10d092a1d758086f454 (patch) | |
| tree | 63b223d991965612c1818f9e3ee5fce2fa4f47a3 /CMakeLists.txt | |
| parent | 97dcabd2485fc791972f2a33484e78be2cabca5e (diff) | |
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 4 |
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) |