diff options
author | Orangerot <purple@orangerot.dev> | 2024-07-26 17:49:18 +0200 |
---|---|---|
committer | Orangerot <purple@orangerot.dev> | 2024-07-26 17:49:18 +0200 |
commit | a5ba031c9dfc830d3fe44e868c5fd26af2fbb225 (patch) | |
tree | 7142f49c4cbfaa607a42530e67918c120bc071c8 /CMakeLists.txt | |
parent | f039734dddd1262909219ed14d9bf07e4d35ff81 (diff) |
feat(qt): simple qt qml application
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b592c39..08e7297 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,3 +4,7 @@ project(itat_challange_olympics) set(CMAKE_CXX_STANDARD 17) add_executable(itat_challange_olympics main.cpp) + +find_package(Qt6 REQUIRED COMPONENTS Quick) +target_link_libraries(itat_challange_olympics PRIVATE Qt6::Quick) + |