summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorItamar <itamar8910@gmail.com>2021-05-17 11:10:18 +0300
committerAndreas Kling <kling@serenityos.org>2021-05-19 23:19:07 +0200
commit463a91c4a28628d78786ad271859ed8d31ef54db (patch)
treec7d0aa8830f79a5add6a2231e663a3889b2e1bfc /Userland
parentef95ddcbfa227745bb60dac655cd23d06c9f80f6 (diff)
downloadserenity-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.txt2
-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