mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:48:12 +00:00

This was done with CLion's automatic rename feature and with: find . -name ClientConnection.h | rename 's/ClientConnection\.h/ConnectionFromClient.h/' find . -name ClientConnection.cpp | rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
19 lines
402 B
CMake
19 lines
402 B
CMake
serenity_component(
|
|
AudioServer
|
|
RECOMMENDED
|
|
TARGETS AudioServer
|
|
)
|
|
|
|
compile_ipc(AudioServer.ipc AudioServerEndpoint.h)
|
|
compile_ipc(AudioClient.ipc AudioClientEndpoint.h)
|
|
|
|
set(SOURCES
|
|
ConnectionFromClient.cpp
|
|
Mixer.cpp
|
|
main.cpp
|
|
AudioServerEndpoint.h
|
|
AudioClientEndpoint.h
|
|
)
|
|
|
|
serenity_bin(AudioServer)
|
|
target_link_libraries(AudioServer LibCore LibThreading LibIPC LibMain)
|