diff --git a/DevTools/CMakeLists.txt b/DevTools/CMakeLists.txt index 65d913a60f..2337588171 100644 --- a/DevTools/CMakeLists.txt +++ b/DevTools/CMakeLists.txt @@ -1,4 +1,4 @@ add_subdirectory(HackStudio) add_subdirectory(Inspector) -add_subdirectory(ProfileViewer) +add_subdirectory(Profiler) add_subdirectory(VisualBuilder) diff --git a/DevTools/ProfileViewer/CMakeLists.txt b/DevTools/Profiler/CMakeLists.txt similarity index 60% rename from DevTools/ProfileViewer/CMakeLists.txt rename to DevTools/Profiler/CMakeLists.txt index c1adfa7ecf..9e224d3ae4 100644 --- a/DevTools/ProfileViewer/CMakeLists.txt +++ b/DevTools/Profiler/CMakeLists.txt @@ -6,5 +6,5 @@ set(SOURCES ProfileTimelineWidget.cpp ) -serenity_bin(ProfileViewer) -target_link_libraries(ProfileViewer LibGUI LibX86) +serenity_bin(Profiler) +target_link_libraries(Profiler LibGUI LibX86) diff --git a/DevTools/ProfileViewer/DisassemblyModel.cpp b/DevTools/Profiler/DisassemblyModel.cpp similarity index 100% rename from DevTools/ProfileViewer/DisassemblyModel.cpp rename to DevTools/Profiler/DisassemblyModel.cpp diff --git a/DevTools/ProfileViewer/DisassemblyModel.h b/DevTools/Profiler/DisassemblyModel.h similarity index 100% rename from DevTools/ProfileViewer/DisassemblyModel.h rename to DevTools/Profiler/DisassemblyModel.h diff --git a/DevTools/ProfileViewer/Profile.cpp b/DevTools/Profiler/Profile.cpp similarity index 100% rename from DevTools/ProfileViewer/Profile.cpp rename to DevTools/Profiler/Profile.cpp diff --git a/DevTools/ProfileViewer/Profile.h b/DevTools/Profiler/Profile.h similarity index 100% rename from DevTools/ProfileViewer/Profile.h rename to DevTools/Profiler/Profile.h diff --git a/DevTools/ProfileViewer/ProfileModel.cpp b/DevTools/Profiler/ProfileModel.cpp similarity index 100% rename from DevTools/ProfileViewer/ProfileModel.cpp rename to DevTools/Profiler/ProfileModel.cpp diff --git a/DevTools/ProfileViewer/ProfileModel.h b/DevTools/Profiler/ProfileModel.h similarity index 100% rename from DevTools/ProfileViewer/ProfileModel.h rename to DevTools/Profiler/ProfileModel.h diff --git a/DevTools/ProfileViewer/ProfileTimelineWidget.cpp b/DevTools/Profiler/ProfileTimelineWidget.cpp similarity index 100% rename from DevTools/ProfileViewer/ProfileTimelineWidget.cpp rename to DevTools/Profiler/ProfileTimelineWidget.cpp diff --git a/DevTools/ProfileViewer/ProfileTimelineWidget.h b/DevTools/Profiler/ProfileTimelineWidget.h similarity index 100% rename from DevTools/ProfileViewer/ProfileTimelineWidget.h rename to DevTools/Profiler/ProfileTimelineWidget.h diff --git a/DevTools/ProfileViewer/main.cpp b/DevTools/Profiler/main.cpp similarity index 97% rename from DevTools/ProfileViewer/main.cpp rename to DevTools/Profiler/main.cpp index 0cd47c37a5..dc64030101 100644 --- a/DevTools/ProfileViewer/main.cpp +++ b/DevTools/Profiler/main.cpp @@ -56,7 +56,7 @@ int main(int argc, char** argv) GUI::Application app(argc, argv); auto window = GUI::Window::construct(); - window->set_title("ProfileViewer"); + window->set_title("Profiler"); window->set_rect(100, 100, 800, 600); auto& main_widget = window->set_main_widget(); @@ -79,7 +79,7 @@ int main(int argc, char** argv) }; auto menubar = GUI::MenuBar::construct(); - auto& app_menu = menubar->add_menu("ProfileViewer"); + auto& app_menu = menubar->add_menu("Profiler"); app_menu.add_action(GUI::CommonActions::make_quit_action([&](auto&) { app.quit(); })); auto& view_menu = menubar->add_menu("View"); diff --git a/Meta/build-root-filesystem.sh b/Meta/build-root-filesystem.sh index c811641cdf..0fdb2e24be 100755 --- a/Meta/build-root-filesystem.sh +++ b/Meta/build-root-filesystem.sh @@ -159,7 +159,7 @@ ln -s Browser mnt/bin/br ln -s HackStudio mnt/bin/hs ln -s Debugger mnt/bin/sdb ln -s SystemMonitor mnt/bin/sm -ln -s ProfileViewer mnt/bin/pv +ln -s Profiler mnt/bin/pv ln -s WebServer mnt/bin/ws ln -s Solitaire mnt/bin/sl ln -s WebView mnt/bin/wv