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)