10 lines
200 B
CMake
10 lines
200 B
CMake
|
|
find_package(Qt6 COMPONENTS Core REQUIRED)
|
|
|
|
add_executable(task3-chpt3ex12)
|
|
|
|
target_sources(task3-chpt3ex12 PRIVATE
|
|
main.cpp)
|
|
|
|
target_link_libraries(task3-chpt3ex12 PRIVATE
|
|
Qt6::Core) |