summaryrefslogtreecommitdiff
path: root/Meta
diff options
context:
space:
mode:
authorkleines Filmröllchen <filmroellchen@serenityos.org>2023-05-18 10:45:57 +0200
committerTim Flynn <trflynn89@pm.me>2023-05-18 07:05:25 -0700
commitb73b4d7533edcd24eba96433c7058a3f4490b13f (patch)
tree52d065600a0c42bae9128424fbdf90fbcdc6dd5f /Meta
parent0bbd9040efbe97850a18a49a9cea25498d727f13 (diff)
downloadserenity-b73b4d7533edcd24eba96433c7058a3f4490b13f.zip
Meta: Build abench on Lagom
This makes it possible to test audio decoding without much I/O overhead.
Diffstat (limited to 'Meta')
-rw-r--r--Meta/Lagom/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
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)