mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 01:20:25 +00:00
5e2b8d160b
Now that we don't keep a C compiler around in the toolchain (to save space) we can't have .c files in the build. This reminds me that #362 exists and we should fix that at some point.
33 lines
591 B
CMake
33 lines
591 B
CMake
set(SOURCES
|
|
ArgsParser.cpp
|
|
ConfigFile.cpp
|
|
DateTime.cpp
|
|
DirIterator.cpp
|
|
ElapsedTimer.cpp
|
|
Event.cpp
|
|
EventLoop.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
|
|
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)
|