diff options
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) |