aca-tasks/task3/CMakeLists.txt

9 lines
211 B
CMake
Raw Permalink Normal View History

2023-12-02 13:34:06 +00:00
find_package(Qt6 COMPONENTS Core REQUIRED)
2023-12-05 20:33:25 +00:00
add_executable(task3-chpt3ex12-rd)
2023-12-02 15:04:12 +00:00
2023-12-05 20:33:25 +00:00
target_sources(task3-chpt3ex12-rd PRIVATE
main-rd.cpp)
2023-12-02 15:04:12 +00:00
2023-12-05 20:33:25 +00:00
target_link_libraries(task3-chpt3ex12-rd PRIVATE
Qt6::Core)