initial Commit

This commit is contained in:
Stanislaus Cichcoki
2025-03-09 00:44:38 +01:00
commit 5e291621ef
3 changed files with 15 additions and 0 deletions

2
.gitignore vendored Normal file
View File

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

8
CMakeLists.txt Normal file
View File

@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.30)
project(Sim_C__)
set(CMAKE_CXX_STANDARD 26)
add_executable(Sim_C__
src/main.cpp
)

5
src/main.cpp Normal file
View File

@ -0,0 +1,5 @@
//
// Created by Stani on 09/03/2025.
//
int main(){}