serenity/Libraries/LibCore/CMakeLists.txt
Andreas Kling 5e2b8d160b LibCore: Rename puff.c => puff.cpp
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.
2020-07-29 14:41:57 +02:00

34 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)