Initial commit

This commit is contained in:
2025-11-10 20:44:10 +11:00
commit 18fadc18ed
8 changed files with 3500 additions and 0 deletions

7
CMakeLists.txt Normal file
View File

@@ -0,0 +1,7 @@
cmake_minimum_required(VERSION 4.0)
project(pipple)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_FLAGS_RELEASE "-O3")
add_executable(pipple src/main.cpp)