xo-expression2: + Expression facet

This commit is contained in:
Roland Conybeare 2026-01-12 21:50:17 -05:00
commit ceb75e83c4
14 changed files with 634 additions and 4 deletions

View file

@ -0,0 +1,16 @@
# expression2/CMakeLists.txt
set(SELF_LIB xo_expression2)
set(SELF_SRCS
TypeRef.cpp
#IExpression_Any.cpp
expression2_register_facets.cpp
)
xo_add_shared_library4(${SELF_LIB} ${PROJECT_NAME}Targets ${PROJECT_VERSION} 1 ${SELF_SRCS})
# note: deps here must also appear in cmake/xo_expression2Config.cmake.in
xo_dependency(${SELF_LIB} xo_gc)
xo_dependency(${SELF_LIB} reflect)
xo_dependency(${SELF_LIB} xo_printable2)
xo_dependency(${SELF_LIB} xo_flatstring)
xo_dependency(${SELF_LIB} indentlog)