aca-tasks/task3/CMakeLists.txt
2023-12-05 21:33:25 +01:00

9 lines
211 B
CMake

find_package(Qt6 COMPONENTS Core REQUIRED)
add_executable(task3-chpt3ex12-rd)
target_sources(task3-chpt3ex12-rd PRIVATE
main-rd.cpp)
target_link_libraries(task3-chpt3ex12-rd PRIVATE
Qt6::Core)