view CMakeLists.txt @ 1:3707ed11b401

Compile with C++17
author Lewin Bormann <lbo@spheniscida.de>
date Mon, 23 Mar 2020 18:31:24 +0100
parents c0219423b5b2
children 20c6c0bec02a
line wrap: on
line source

project("CTMP")
cmake_minimum_required(VERSION 3.16)

add_compile_options(-std=c++17)

add_executable(example src/example.cc)

add_executable(binary src/binary.cc)