A minimalistic programming language written in C89.
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
cmake_minimum_required(VERSION 3.27)
|
|
project(ink C)
|
|
|
|
set(CMAKE_C_STANDARD 90)
|
|
|
|
add_library(ink lib.c ink.h)
|
|
add_executable(ink_exe main.c)
|
|
target_link_libraries(ink_exe PUBLIC ink)
|
|
|
|
# Benchmark is broken since the addition to coroutines
|
|
# add_executable(ink_bench bench.c)
|
|
# target_link_libraries(ink_bench PUBLIC ink)
|