Files
cground/CMakeLists.txt
2025-11-24 10:15:53 +11:00

18 lines
325 B
CMake

cmake_minimum_required(VERSION 4.0)
project(groundc C)
set(CMAKE_C_STANDARD 11)
include_directories(src)
add_executable(groundc
src/main.c
src/interpreter.c
src/interpreter.h
src/parser.c
src/parser.h
src/lexer.c
src/lexer.h
src/types.c
src/types.h)