feat: add build target for borded_cpp and lower cmake minimum version to 3.25

Add a new `build_borded_cpp` make target that compiles the borded_cpp
version of isspam using C++23 with `-Ofast` optimization. Also reduce
the CMake minimum required version from 3.30 to 3.25 in the borded_cpp
CMakeLists.txt to improve compatibility with older CMake installations.
This commit is contained in:
BordedDev
2025-03-20 22:21:33 +00:00
parent e17945027b
commit 1dfc4a495d
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.30)
cmake_minimum_required(VERSION 3.25)
project(isspam)
set(CMAKE_CXX_STANDARD 26)