From b73b4d7533edcd24eba96433c7058a3f4490b13f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?kleines=20Filmr=C3=B6llchen?= Date: Thu, 18 May 2023 10:45:57 +0200 Subject: [PATCH] Meta: Build abench on Lagom This makes it possible to test audio decoding without much I/O overhead. --- Meta/Lagom/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Meta/Lagom/CMakeLists.txt b/Meta/Lagom/CMakeLists.txt index d7ddbb2f5f..5897e2472f 100644 --- a/Meta/Lagom/CMakeLists.txt +++ b/Meta/Lagom/CMakeLists.txt @@ -479,6 +479,9 @@ if (BUILD_LAGOM) add_serenity_subdirectory(Userland/Services) # Lagom Utilities + add_executable(abench ../../Userland/Utilities/abench.cpp) + target_link_libraries(abench LibCore LibMain LibFileSystem LibAudio) + if (NOT EMSCRIPTEN) add_executable(adjtime ../../Userland/Utilities/adjtime.cpp) target_link_libraries(adjtime LibCore LibMain)