61 lines
1.6 KiB
CMake
61 lines
1.6 KiB
CMake
# reader2/CMakeLists.txt
|
|
|
|
set(SELF_LIB xo_reader2)
|
|
set(SELF_SRCS
|
|
init_reader2.cpp
|
|
reader2_register_facets.cpp
|
|
reader2_register_types.cpp
|
|
|
|
SchematikaReader.cpp
|
|
ReaderConfig.cpp
|
|
|
|
SchematikaParser.cpp
|
|
ParserStateMachine.cpp
|
|
ParserStack.cpp
|
|
ParserResult.cpp
|
|
|
|
syntaxstatetype.cpp
|
|
ISyntaxStateMachine_Any.cpp
|
|
|
|
DExprSeqState.cpp
|
|
ISyntaxStateMachine_DExprSeqState.cpp
|
|
IPrintable_DExprSeqState.cpp
|
|
|
|
DDefineSsm.cpp
|
|
ISyntaxStateMachine_DDefineSsm.cpp
|
|
IPrintable_DDefineSsm.cpp
|
|
|
|
DIfElseSsm.cpp
|
|
ISyntaxStateMachine_DIfElseSsm.cpp
|
|
IPrintable_DIfElseSsm.cpp
|
|
|
|
DExpectSymbolSsm.cpp
|
|
ISyntaxStateMachine_DExpectSymbolSsm.cpp
|
|
IPrintable_DExpectSymbolSsm.cpp
|
|
|
|
DExpectTypeSsm.cpp
|
|
ISyntaxStateMachine_DExpectTypeSsm.cpp
|
|
IPrintable_DExpectTypeSsm.cpp
|
|
|
|
DExpectExprSsm.cpp
|
|
ISyntaxStateMachine_DExpectExprSsm.cpp
|
|
IPrintable_DExpectExprSsm.cpp
|
|
|
|
DProgressSsm.cpp
|
|
ISyntaxStateMachine_DProgressSsm.cpp
|
|
IPrintable_DProgressSsm.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_procedure2)
|
|
xo_dependency(${SELF_LIB} xo_gc)
|
|
xo_dependency(${SELF_LIB} xo_tokenizer2)
|
|
xo_dependency(${SELF_LIB} xo_expression2)
|
|
#xo_dependency(${SELF_LIB} reflect)
|
|
#xo_dependency(${SELF_LIB} xo_object2)
|
|
#xo_dependency(${SELF_LIB} xo_printable2)
|
|
#xo_dependency(${SELF_LIB} xo_flatstring)
|
|
xo_dependency(${SELF_LIB} subsys)
|
|
#xo_dependency(${SELF_LIB} indentlog)
|