mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:38:12 +00:00

By deferring to the CMakeLists in each of these libraries' directories, we can get rid of a lot of curious GLOB patterns and list removals in the Lagom CMakeLists.
48 lines
915 B
CMake
48 lines
915 B
CMake
set(SOURCES
|
|
AnonymousBuffer.cpp
|
|
ArgsParser.cpp
|
|
Command.cpp
|
|
ConfigFile.cpp
|
|
DateTime.cpp
|
|
Directory.cpp
|
|
DirIterator.cpp
|
|
ElapsedTimer.cpp
|
|
Event.cpp
|
|
EventLoop.cpp
|
|
File.cpp
|
|
FileWatcher.cpp
|
|
IODevice.cpp
|
|
LockFile.cpp
|
|
MappedFile.cpp
|
|
MimeData.cpp
|
|
NetworkJob.cpp
|
|
Notifier.cpp
|
|
Object.cpp
|
|
Process.cpp
|
|
ProcessStatisticsReader.cpp
|
|
Property.cpp
|
|
SecretString.cpp
|
|
SessionManagement.cpp
|
|
SOCKSProxyClient.cpp
|
|
StandardPaths.cpp
|
|
Stream.cpp
|
|
System.cpp
|
|
SystemServerTakeover.cpp
|
|
TCPServer.cpp
|
|
TempFile.cpp
|
|
Timer.cpp
|
|
UDPServer.cpp
|
|
Version.cpp
|
|
)
|
|
if (NOT ANDROID AND NOT WIN32)
|
|
list(APPEND SOURCES
|
|
Account.cpp
|
|
FilePermissionsMask.cpp
|
|
GetPassword.cpp
|
|
Group.cpp
|
|
LocalServer.cpp
|
|
)
|
|
endif()
|
|
|
|
serenity_lib(LibCore core)
|
|
target_link_libraries(LibCore LibC LibCrypt)
|