Делаем проект

This commit is contained in:
Egor Sennov 2025-01-22 11:10:12 +03:00
parent a50e6ee740
commit 29e236d5f1
No known key found for this signature in database
GPG Key ID: B731C7656FB71AA2
2 changed files with 10 additions and 0 deletions

5
CMakeLists.txt Normal file
View File

@ -0,0 +1,5 @@
cmake_minimum_required(VERSION 3.17)
add_executable(
main main.cpp
)

5
main.cpp Normal file
View File

@ -0,0 +1,5 @@
#include <iostream>
int main() {
std::cout << "Hello";
}