﻿# CMakeList.txt : CMake project for Concepts, include source and define
# project specific logic here.
#
cmake_minimum_required (VERSION 3.8)
set(CMAKE_CXX_STANDARD 20)

project ("Concepts")

# Add source to this project's executable.
add_executable (Concepts "Concepts.cpp")

# TODO: Add tests and install targets if needed.
