parser: initial implementation [wip - only handles 'def' expr

This commit is contained in:
Roland Conybeare 2024-07-31 23:37:51 +10:00
commit 5d2ee35fe6
10 changed files with 1454 additions and 0 deletions

11
src/parser/CMakeLists.txt Normal file
View file

@ -0,0 +1,11 @@
# parser/CMakeLists.txt
set(SELF_LIB xo_parser)
set(SELF_SRCS
parser.cpp)
xo_add_shared_library4(${SELF_LIB} ${PROJECT_NAME}Targets ${PROJECT_VERSION} 1 ${SELF_SRCS})
xo_dependency(${SELF_LIB} xo_expression)
xo_dependency(${SELF_LIB} xo_tokenizer)
# end CMakeLists.txt