1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 03:15:08 +00:00
serenity/Userland/Libraries/LibCpp/CMakeLists.txt
Itamar bed3261723 LibCpp: Start working on a C preprocessor
We currently handle basic #define statements as well as ifdef and else
branches.
2021-02-08 23:10:38 +01:00

10 lines
173 B
CMake

set(SOURCES
AST.cpp
Lexer.cpp
Parser.cpp
Preprocessor.cpp
SyntaxHighlighter.cpp
)
serenity_lib(LibCpp cpp)
target_link_libraries(LibCpp LibC LibSyntax)