+ xo-tokenizer2 xo-reader2 xo-expression2 xo-interpreter2
2nd gen schematika interpreter using fomo
This commit is contained in:
parent
95bd3c7fae
commit
f7bd3b0db3
41 changed files with 3566 additions and 9 deletions
15
xo-tokenizer2/example/tokenrepl/CMakeLists.txt
Normal file
15
xo-tokenizer2/example/tokenrepl/CMakeLists.txt
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# xo-tokenizer2/example/tokenrepl/CMakeLists.txt
|
||||
|
||||
set(SELF_EXE xo_tokenizer2_repl)
|
||||
set(SELF_SRCS tokenrepl.cpp)
|
||||
|
||||
if (XO_ENABLE_EXAMPLES)
|
||||
xo_add_executable(${SELF_EXE} ${SELF_SRCS})
|
||||
xo_self_dependency(${SELF_EXE} xo_tokenizer2)
|
||||
xo_external_target_dependency(${SELF_EXE} replxx replxx::replxx)
|
||||
|
||||
find_package(Threads REQUIRED) # replxx needs this
|
||||
target_link_libraries(${SELF_EXE} PUBLIC Threads::Threads)
|
||||
endif()
|
||||
|
||||
# end CMakeLists.txt
|
||||
Loading…
Add table
Add a link
Reference in a new issue