summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 9d6f6c1ebd43fd195173129c58bf352c6eef6cb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
cmake_minimum_required(VERSION "3.30.0")

project("pen-fix"
  LANGUAGES CXX
)

add_executable("pen-fix"
  "pen-fix/main.cpp"
)

target_compile_features("pen-fix" PRIVATE
  "cxx_std_23"
)