TabSpace Initial Code Commit

This commit is contained in:
ookami125 2025-05-02 14:03:11 -04:00
parent a613ed0f87
commit 6db8b386af
3 changed files with 311 additions and 0 deletions

8
CMakeLists.txt Normal file
View file

@ -0,0 +1,8 @@
cmake_minimum_required(VERSION 3.10)
project(TabSpace)
set (CMAKE_CXX_STANDARD 20)
add_executable(TabSpace
src/main.cpp
)