diff options
author | Itamar <itamar8910@gmail.com> | 2021-02-06 15:51:04 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-08 23:10:38 +0100 |
commit | bed326172309437c9212f5976c6bf6a9fd997fcb (patch) | |
tree | e038a9a709eacd323aa12d2ed75ac26db0c9aa21 /Userland/Utilities/CMakeLists.txt | |
parent | 2d2b3ba5edc794a75a42d3dc14aca811b9d26592 (diff) | |
download | serenity-bed326172309437c9212f5976c6bf6a9fd997fcb.zip |
LibCpp: Start working on a C preprocessor
We currently handle basic #define statements as well as ifdef and else
branches.
Diffstat (limited to 'Userland/Utilities/CMakeLists.txt')
-rw-r--r-- | Userland/Utilities/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Utilities/CMakeLists.txt b/Userland/Utilities/CMakeLists.txt index 64f35b1be7..4ac99be6e0 100644 --- a/Userland/Utilities/CMakeLists.txt +++ b/Userland/Utilities/CMakeLists.txt @@ -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) |