ladybird/Userland/Libraries/LibCore
asynts 1a3a0836c0 Everywhere: Use CMake to generate AK/Debug.h.
This was done with the help of several scripts, I dump them here to
easily find them later:

    awk '/#ifdef/ { print "#cmakedefine01 "$2 }' AK/Debug.h.in

    for debug_macro in $(awk '/#ifdef/ { print $2 }' AK/Debug.h.in)
    do
        find . \( -name '*.cpp' -o -name '*.h' -o -name '*.in' \) -not -path './Toolchain/*' -not -path './Build/*' -exec sed -i -E 's/#ifdef '$debug_macro'/#if '$debug_macro'/' {} \;
    done

    # Remember to remove WRAPPER_GERNERATOR_DEBUG from the list.
    awk '/#cmake/ { print "set("$2" ON)" }' AK/Debug.h.in
2021-01-25 09:47:36 +01:00
..
Account.cpp LibCore: Always fail Account authentication on missing shadow entry 2021-01-21 11:34:39 +01:00
Account.h LibCore: Always fail Account authentication on missing shadow entry 2021-01-21 11:34:39 +01:00
AnonymousBuffer.cpp oss-fuzz: Try harder to fix build 2021-01-20 23:41:38 +01:00
AnonymousBuffer.h LibCore+LibIPC: Add Core::AnonymousBuffer, an IPC-friendly buffer class 2021-01-16 17:20:24 +01:00
ArgsParser.cpp
ArgsParser.h
CMakeLists.txt LibCore+LibIPC: Add Core::AnonymousBuffer, an IPC-friendly buffer class 2021-01-16 17:20:24 +01:00
Command.cpp
Command.h
ConfigFile.cpp
ConfigFile.h
DateTime.cpp
DateTime.h
DirectoryWatcher.cpp
DirectoryWatcher.h
DirIterator.cpp
DirIterator.h
ElapsedTimer.cpp
ElapsedTimer.h
Event.cpp
Event.h
EventLoop.cpp
EventLoop.h
File.cpp LibCore: Fix invalid errno 2021-01-16 22:40:53 +01:00
File.h
FileStream.h
Forward.h LibCore+LibIPC: Add Core::AnonymousBuffer, an IPC-friendly buffer class 2021-01-16 17:20:24 +01:00
GetPassword.cpp
GetPassword.h
Gzip.cpp Everywhere: Use CMake to generate AK/Debug.h. 2021-01-25 09:47:36 +01:00
Gzip.h
IODevice.cpp
IODevice.h
IODeviceStreamReader.h
LocalServer.cpp LibC+Everywhere: Remove open_with_path_length() in favor of open() 2021-01-12 23:34:01 +01:00
LocalServer.h
LocalSocket.cpp LibC+Everywhere: Remove open_with_path_length() in favor of open() 2021-01-12 23:34:01 +01:00
LocalSocket.h
MimeData.cpp
MimeData.h
NetworkJob.cpp Everywhere: Use CMake to generate AK/Debug.h. 2021-01-25 09:47:36 +01:00
NetworkJob.h Everywhere: Replace a bundle of dbg with dbgln. 2021-01-22 22:14:30 +01:00
NetworkResponse.cpp
NetworkResponse.h
Notifier.cpp
Notifier.h
Object.cpp
Object.h
ProcessStatisticsReader.cpp
ProcessStatisticsReader.h
Property.cpp
Property.h
puff.cpp
puff.h
Socket.cpp Everywhere: Replace a bundle of dbg with dbgln. 2021-01-22 22:14:30 +01:00
Socket.h Everywhere: Replace a bundle of dbg with dbgln. 2021-01-22 22:14:30 +01:00
SocketAddress.cpp
SocketAddress.h Everywhere: Replace a bundle of dbg with dbgln. 2021-01-22 22:14:30 +01:00
StandardPaths.cpp
StandardPaths.h
SyscallUtils.h Everywhere: Replace a bundle of dbg with dbgln. 2021-01-22 22:14:30 +01:00
TCPServer.cpp LibCore: Include fcntl before using it for non-linux lagom builds 2021-01-13 09:52:32 +01:00
TCPServer.h
TCPSocket.cpp
TCPSocket.h
Timer.cpp
Timer.h
UDPServer.cpp LibCore: Include fcntl.h in more places that we use fcntl for Lagom 2021-01-13 15:02:11 +01:00
UDPServer.h
UDPSocket.cpp
UDPSocket.h