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

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."
41 lines
757 B
CMake
41 lines
757 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
|
|
FilePermissionsMask.cpp
|
|
GetPassword.cpp
|
|
Group.cpp
|
|
IODevice.cpp
|
|
LocalServer.cpp
|
|
LockFile.cpp
|
|
MappedFile.cpp
|
|
MimeData.cpp
|
|
NetworkJob.cpp
|
|
Notifier.cpp
|
|
Object.cpp
|
|
Process.cpp
|
|
ProcessStatisticsReader.cpp
|
|
Property.cpp
|
|
SecretString.cpp
|
|
Stream.cpp
|
|
StandardPaths.cpp
|
|
System.cpp
|
|
SystemServerTakeover.cpp
|
|
TCPServer.cpp
|
|
TempFile.cpp
|
|
Timer.cpp
|
|
UDPServer.cpp
|
|
Version.cpp
|
|
)
|
|
|
|
serenity_lib(LibCore core)
|
|
target_link_libraries(LibCore LibC LibCrypt)
|