This repository has been archived on 2025-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
mathematical-algorithms-cpp/CMakeLists.txt
2025-03-23 23:14:25 +09:00

11 lines
276 B
CMake

cmake_minimum_required(VERSION 3.10)
project(mathematical-algorithms)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED true)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
add_compile_options(-Wall -Wextra -Wpedantic)
add_executable(mathematical-algorithms src/main.cpp)