A minimalistic programming language written in C89.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 regels
319 B

4 maanden geleden
4 maanden geleden
4 maanden geleden
  1. cmake_minimum_required(VERSION 3.27)
  2. project(ink C)
  3. set(CMAKE_C_STANDARD 90)
  4. add_library(ink lib.c ink.h)
  5. add_executable(ink_exe main.c)
  6. target_link_libraries(ink_exe PUBLIC ink)
  7. # Benchmark is broken since the addition to coroutines
  8. # add_executable(ink_bench bench.c)
  9. # target_link_libraries(ink_bench PUBLIC ink)