mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:48:10 +00:00
13 lines
308 B
CMake
13 lines
308 B
CMake
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)
|