cmake_minimum_required(VERSION 3.0 FATAL_ERROR) project (test) foreach (VAR a b c d e f g) message ("message '${VAR}'") endforeach () foreach (VAR a b c d e f g) message (STATUS "status '${VAR}'") endforeach () foreach (VAR a b c d e f g) message (WARNING "warning '${VAR}'") endforeach () add_executable(main main.cpp)