cmake_minimum_required(VERSION 3.5) project(LampArrayPlayground) add_executable(lap lap.cpp) target_compile_features(lap PRIVATE cxx_std_17) add_executable(laploop laploop.cpp) target_compile_features(laploop PRIVATE cxx_std_17) add_executable(laploopsingle laploopsingle.cpp) target_compile_features(laploopsingle PRIVATE cxx_std_17)