1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 17:27:46 +00:00

LibCMake: Introduce a CMake lexer

This commit is contained in:
Sam Atkins 2023-03-03 12:12:56 +00:00 committed by Andrew Kaster
parent ca4cc03269
commit 3d8cc2257f
8 changed files with 581 additions and 0 deletions

View file

@ -0,0 +1,7 @@
set(SOURCES
Lexer.cpp
Token.cpp
)
serenity_lib(LibCMake cmake)
target_link_libraries(LibCMake PRIVATE LibSyntax)