build(build): 拆分子目录 CMakeLists 并规范目标命名

This commit is contained in:
Lane0218
2025-12-27 15:10:35 +08:00
parent 35da726b00
commit 6de56f107b
13 changed files with 276 additions and 14 deletions

8
src/ast/CMakeLists.txt Normal file
View File

@@ -0,0 +1,8 @@
add_library(ast STATIC
AstNodes.cpp
AstPrinter.cpp
)
target_link_libraries(ast PUBLIC
build_options
)