1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 00:35:06 +00:00
serenity/Userland/Libraries/LibIMAP/CMakeLists.txt
x-yl 8c6061fc4a LibIMAP: Add a new IMAP client and support NOOP
A large commit, but sets up the framework for how the IMAP library will
work. Right now only the NOOP command and response is supported.
2021-06-11 23:58:28 +04:30

6 lines
146 B
CMake

set(SOURCES Objects.cpp Client.cpp Parser.cpp)
set(GENERATED_SOURCES)
serenity_lib(LibIMAP imap)
target_link_libraries(LibIMAP LibCore LibTLS)