ladybird/Userland/Libraries/LibIPC/CMakeLists.txt
Lenny Maiorani dcdc62323d Libraries: Use default constructors/destructors in LibIPC
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules

"The compiler is more likely to get the default semantics right and
you cannot implement these functions better than the compiler."
2022-03-13 22:34:38 +01:00

9 lines
134 B
CMake

set(SOURCES
Connection.cpp
Decoder.cpp
Encoder.cpp
)
serenity_lib(LibIPC ipc)
target_link_libraries(LibIPC LibC LibCore)