cmake_minimum_required (VERSION 3.0) project (Runner) file(GLOB sources *.cpp *.h) add_executable(Runner ${sources}) target_compile_options(Runner PUBLIC -std=c++17 -O2)