Files
cground/CMakeLists.txt

18 lines
325 B
CMake
Raw Normal View History

2025-11-23 13:37:08 +11:00
cmake_minimum_required(VERSION 4.0)
project(groundc C)
set(CMAKE_C_STANDARD 11)
include_directories(src)
add_executable(groundc
src/main.c
2025-11-24 10:15:53 +11:00
src/interpreter.c
src/interpreter.h
2025-11-23 13:37:08 +11:00
src/parser.c
src/parser.h
2025-11-23 15:54:50 +11:00
src/lexer.c
src/lexer.h
2025-11-23 13:37:08 +11:00
src/types.c
src/types.h)