Setting Up Project

This commit is contained in:
Snoweuph 2023-09-15 21:21:04 +02:00
parent 73d6593cd1
commit 39dc2fa4d1
4 changed files with 15 additions and 1 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/cmake-build-debug/**/*
/.idea/

6
CMakeLists.txt Normal file
View file

@ -0,0 +1,6 @@
cmake_minimum_required(VERSION 3.26)
project(Learning)
set(CMAKE_CXX_STANDARD 23)
add_executable(Learning main.cpp)

View file

@ -1,5 +1,5 @@
## Tec Stack
Language: `lang`
Language: `cpp`
Framework: `none`
Librarys: `none`

6
main.cpp Normal file
View file

@ -0,0 +1,6 @@
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}