qt 6.6.0 clean

This commit is contained in:
kleuter
2023-11-01 22:23:55 +01:00
parent 7b5ada15e7
commit 5d8194efa7
1449 changed files with 134276 additions and 31391 deletions

View File

@ -0,0 +1,14 @@
cmake_minimum_required(VERSION 3.16)
project(cpp_project LANGUAGES CXX)
find_package(Qt6 REQUIRED COMPONENTS Core)
qt_standard_project_setup()
qt_add_executable(cpp_project
main.cpp
)
target_link_libraries(cpp_project
PRIVATE
Qt::Core
)

View File

@ -0,0 +1,7 @@
#include <iostream>
int main(int, char *[])
{
std::cout << "Now I have CMakeLists.txt. Thanks!" << std::endl;
return 0;
}