blob: 800759f784c5a5aef730ddc86a025ec8cc16fbe0 (
plain)
1
2
3
4
5
6
|
cmake_minimum_required(VERSION 3.21.2)
project(const)
add_compile_options(-Wall -Wextra -Werror -pedantic -std=c++20 -Wold-style-cast)
add_executable(const test_person.cc person.cc)
|