From 9292c7bca94ff5e433bd0d380e22926a0a367ac6 Mon Sep 17 00:00:00 2001 From: Undefine Date: Sun, 29 Mar 2026 12:13:52 +0200 Subject: [PATCH] AK: Move generating the Debug.h header to AK's CMakeLists --- AK/CMakeLists.txt | 2 ++ CMakeLists.txt | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AK/CMakeLists.txt b/AK/CMakeLists.txt index b0dbd0b44e..481032944c 100644 --- a/AK/CMakeLists.txt +++ b/AK/CMakeLists.txt @@ -48,6 +48,8 @@ endif() ladybird_lib(AK ak) +configure_file(Debug.h.in Debug.h @ONLY) + find_package(cpptrace CONFIG) find_package(Backtrace) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b1a354a30..aa359f237c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -123,8 +123,6 @@ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${LINKER_FLAGS}") set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${LINKER_FLAGS}") set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} ${LINKER_FLAGS}") -configure_file(AK/Debug.h.in AK/Debug.h @ONLY) - include_directories(${LADYBIRD_SOURCE_DIR}) include_directories(Libraries) include_directories(Services)