mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 10:55:07 +00:00

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.
38 lines
693 B
CMake
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)
|