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

LibCpp: Start working on a C preprocessor

We currently handle basic #define statements as well as ifdef and else
branches.
This commit is contained in:
Itamar 2021-02-06 15:51:04 +02:00 committed by Andreas Kling
parent 2d2b3ba5ed
commit bed3261723
5 changed files with 283 additions and 0 deletions

View file

@ -49,3 +49,4 @@ target_link_libraries(tt LibPthread)
target_link_libraries(grep LibRegex)
target_link_libraries(gunzip LibCompress)
target_link_libraries(CppParserTest LibCpp LibGUI)
target_link_libraries(PreprocessorTest LibCpp LibGUI)