cmake_minimum_required(VERSION 3.22) project( CMakeExcercise VERSION 1.0 DESCRIPTION "This is an example for the lab." LANGUAGES C) add_executable(example1 example_1.c) add_executable(example2 example_2.c)