aca-tasks/task3/CMakeLists.txt

10 lines
223 B
CMake
Raw Normal View History

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