1
0
forked from ground/ground-old
This repository has been archived on 2026-03-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ground_old_fork/CMakeLists.txt

14 lines
233 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
src/parser.c
src/parser.h
src/types.c
src/types.h)