From d6884a5d6f6a7fe9f2427a55c20380e8949d7bd4 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Wed, 20 Mar 2024 11:10:50 -0400 Subject: [PATCH] Meta: Add the base64 utility to the Lagom build Useful for profiling. --- Meta/Lagom/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Meta/Lagom/CMakeLists.txt b/Meta/Lagom/CMakeLists.txt index 86387fccbde..99789ee99e3 100644 --- a/Meta/Lagom/CMakeLists.txt +++ b/Meta/Lagom/CMakeLists.txt @@ -552,6 +552,8 @@ if (BUILD_LAGOM) lagom_utility(adjtime SOURCES ../../Userland/Utilities/adjtime.cpp LIBS LibMain) endif() + lagom_utility(base64 SOURCES ../../Userland/Utilities/base64.cpp LIBS LibMain) + # FIXME: Excluding arm64 is a temporary hack to circumvent a build problem # for Lagom on Apple M1 if (NOT CMAKE_SYSTEM_PROCESSOR MATCHES "arm64" AND NOT EMSCRIPTEN)