mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 17:15:26 +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/'
20 lines
402 B
CMake
20 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)
|