diff options
author | Itamar <itamar8910@gmail.com> | 2021-05-17 11:10:18 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-19 23:19:07 +0200 |
commit | 463a91c4a28628d78786ad271859ed8d31ef54db (patch) | |
tree | c7d0aa8830f79a5add6a2231e663a3889b2e1bfc /Userland | |
parent | ef95ddcbfa227745bb60dac655cd23d06c9f80f6 (diff) | |
download | serenity-463a91c4a28628d78786ad271859ed8d31ef54db.zip |
Utilities: Rename CppParserTest => cpp-parser
This is a utility program that runs the LibCpp parser on a program and
dumps out the AST.
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Utilities/CMakeLists.txt | 2 | ||||
-rw-r--r-- | Userland/Utilities/cpp-parser.cpp (renamed from Userland/Utilities/CppParserTest.cpp) | 0 |
2 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Utilities/CMakeLists.txt b/Userland/Utilities/CMakeLists.txt index 1387ba3234..2dcf35cfa1 100644 --- a/Userland/Utilities/CMakeLists.txt +++ b/Userland/Utilities/CMakeLists.txt @@ -54,6 +54,6 @@ target_link_libraries(test-pthread LibThread) target_link_libraries(tt LibPthread) target_link_libraries(unzip LibArchive LibCompress) target_link_libraries(zip LibArchive LibCompress LibCrypto) -target_link_libraries(CppParserTest LibCpp LibGUI) +target_link_libraries(cpp-parser LibCpp LibGUI) target_link_libraries(PreprocessorTest LibCpp LibGUI) target_link_libraries(wasm LibWasm) diff --git a/Userland/Utilities/CppParserTest.cpp b/Userland/Utilities/cpp-parser.cpp index 025537ef21..025537ef21 100644 --- a/Userland/Utilities/CppParserTest.cpp +++ b/Userland/Utilities/cpp-parser.cpp |