view src/bin/CMakeLists.txt @ 168:5697df53fe81

bin: Add interpreter binary src/bin/ylisp.
author Lewin Bormann <lbo@spheniscida.de>
date Tue, 03 Sep 2019 20:06:59 +0200
parents b28c56a172f7
children
line wrap: on
line source


# REPL
ADD_EXECUTABLE(repl repl.c)
TARGET_LINK_LIBRARIES(repl core frontend)

# Interpreter
ADD_EXECUTABLE(ylisp ylisp.c)
TARGET_LINK_LIBRARIES(ylisp core frontend)