initial commit

This commit is contained in:
2025-11-26 15:20:54 +01:00
commit 1975059b1b
4 changed files with 34 additions and 0 deletions

9
CMakeLists.txt Normal file
View File

@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.16.0 FATAL_ERROR)
project(pl VERSION 0.0.1 LANGUAGES C CXX)
set(CMAKE_CXX_STANDARD 23)
set(SOURCES
src/main.cpp
)
add_executable(pl ${SOURCES})