From c48149eb63256775977c755ef52db8679a318cb8 Mon Sep 17 00:00:00 2001 From: uint Date: Thu, 18 Dec 2025 22:23:39 +0000 Subject: remove legacy files from CMakeList, rename browser Ladybird->quartz --- quartz/CMakeLists.txt | 3 --- quartz/quartz.cpp | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) (limited to 'quartz') diff --git a/quartz/CMakeLists.txt b/quartz/CMakeLists.txt index e044721..34ce7f0 100644 --- a/quartz/CMakeLists.txt +++ b/quartz/CMakeLists.txt @@ -4,9 +4,6 @@ pkg_check_modules(SDL3_TTF REQUIRED IMPORTED_TARGET sdl3-ttf) add_executable(ladybird quartz.cpp - engine.cpp - ui.cpp - window.cpp ) target_link_libraries(ladybird PRIVATE diff --git a/quartz/quartz.cpp b/quartz/quartz.cpp index 533054c..01e31eb 100644 --- a/quartz/quartz.cpp +++ b/quartz/quartz.cpp @@ -324,7 +324,7 @@ public: std::exit(1); } - win = SDL_CreateWindow("Ladybird", 900, 650, SDL_WINDOW_RESIZABLE); + win = SDL_CreateWindow("quartz", 900, 650, SDL_WINDOW_RESIZABLE); if (!win) { warnln("window create failed: {}", SDL_GetError()); SDL_Quit(); -- cgit v1.2.3