mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
631d36fd98
This adds component declarations so that users can select to not build certain parts of the OS.
20 lines
390 B
CMake
20 lines
390 B
CMake
serenity_component(
|
|
AudioServer
|
|
RECOMMENDED
|
|
TARGETS AudioServer
|
|
)
|
|
|
|
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 LibThreading LibIPC)
|