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.

11 lines
260 B

пре 4 месеци
пре 4 месеци
  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. add_executable(ink_bench bench.c)
  8. target_link_libraries(ink_bench PUBLIC ink)