1 2 3 4 5 6
cmake_minimum_required(VERSION 3.30) project(UnixShell C) set(CMAKE_C_STANDARD 11) add_executable(UnixShell main.c)