1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 10:55:07 +00:00
serenity/Userland/Libraries/LibCore/CMakeLists.txt
DexesTTP 2acbb811b1 LibCore: Added FileWatcher, a binding for the watch_file syscall
This wrapper abstracts the watch_file setup and file handling, and
allows using the watch_file events as part of the event loop via the
Core::Notifier class.

Also renames the existing DirectoryWatcher class to BlockingFileWatcher,
and adds support for the Modified mode in this class.
2021-02-11 13:13:32 +01:00

38 lines
693 B
CMake

set(SOURCES
Account.cpp
AnonymousBuffer.cpp
ArgsParser.cpp
ConfigFile.cpp
Command.cpp
DateTime.cpp
DirIterator.cpp
ElapsedTimer.cpp
Event.cpp
EventLoop.cpp
FileWatcher.cpp
File.cpp
GetPassword.cpp
Gzip.cpp
IODevice.cpp
LocalServer.cpp
LocalSocket.cpp
MimeData.cpp
NetworkJob.cpp
NetworkResponse.cpp
Notifier.cpp
Object.cpp
ProcessStatisticsReader.cpp
Property.cpp
puff.cpp
SocketAddress.cpp
Socket.cpp
StandardPaths.cpp
TCPServer.cpp
TCPSocket.cpp
Timer.cpp
UDPServer.cpp
UDPSocket.cpp
)
serenity_lib(LibCore core)
target_link_libraries(LibCore LibC LibCrypt)