feat: add cpp template

This commit is contained in:
Leon Schwarzäugl 2024-12-31 17:48:23 +01:00
parent 6da0fcbb1b
commit baeb65234b
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
10 changed files with 94 additions and 86 deletions

View file

@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.20)
project(name)
set(CMAKE_CXX_STANDARD 23)
add_subdirectory(src)
install(TARGETS name DESTINATION bin)