dotfiles/.config/Code/User/History/-5efeb447/lneK.txt

9 lines
212 B
Text
Raw Normal View History

2024-06-16 18:53:25 +05:00
cmake_minimum_required(VERSION 3.10)
project(MyProject)
set(CMAKE_CXX_STANDARD 14)
add_executable(MyProject main.cpp)
find_package(Qt5 COMPONENTS Widgets REQUIRED)
target_link_libraries(MyProject Qt5::Widgets)