From c7ac7e6eaff862c1ea4f99e0c6ce75e095106d9c Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 12 Jan 2021 12:23:01 +0100 Subject: Services: Move to Userland/Services/ --- Userland/Services/AudioServer/CMakeLists.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Userland/Services/AudioServer/CMakeLists.txt (limited to 'Userland/Services/AudioServer/CMakeLists.txt') diff --git a/Userland/Services/AudioServer/CMakeLists.txt b/Userland/Services/AudioServer/CMakeLists.txt new file mode 100644 index 0000000000..9c71197b62 --- /dev/null +++ b/Userland/Services/AudioServer/CMakeLists.txt @@ -0,0 +1,13 @@ +compile_ipc(AudioServer.ipc AudioServerEndpoint.h) +compile_ipc(AudioClient.ipc AudioClientEndpoint.h) + +set(SOURCES + ClientConnection.cpp + Mixer.cpp + main.cpp + AudioServerEndpoint.h + AudioClientEndpoint.h +) + +serenity_bin(AudioServer) +target_link_libraries(AudioServer LibCore LibThread LibIPC) -- cgit v1.2.3