serenity/Userland
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
..
Applications FontEditor: change order of baseline and mean line row 2021-01-24 22:02:23 +01:00
Demos LibGfx:: Implement scale support for blit_with_opacity() 2021-01-25 09:41:34 +01:00
DevTools Everywhere: Use CMake to generate AK/Debug.h. 2021-01-25 09:47:36 +01:00
DynamicLoader
Games Conway: Add interactivity 2021-01-22 22:14:08 +01:00
Libraries Everywhere: Use CMake to generate AK/Debug.h. 2021-01-25 09:47:36 +01:00
MenuApplets Everywhere: Drop "shared_buffer" in most GUI programs, pledge "recvfd" 2021-01-16 19:30:32 +01:00
Services Everywhere: Use CMake to generate AK/Debug.h. 2021-01-25 09:47:36 +01:00
Shell Shell: Run the command's next chain even when it's empty 2021-01-23 08:28:58 +01:00
Tests Tests+UserlandEmulator: Demonstrate missing backtraces 2021-01-23 16:47:09 +01:00
Utilities Userland: Implement grep -v (invert-match) 2021-01-25 09:41:19 +01:00
CMakeLists.txt Services: Move to Userland/Services/ 2021-01-12 12:23:01 +01:00