ladybird/Userland/Libraries/LibRegex
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
..
C
Tests Everywhere: Use CMake to generate AK/Debug.h. 2021-01-25 09:47:36 +01:00
CMakeLists.txt
Forward.h
Regex.h
RegexByteCode.cpp Everywhere: Replace a bundle of dbg with dbgln. 2021-01-22 22:14:30 +01:00
RegexByteCode.h Everywhere: Fix typos 2021-01-22 18:41:29 +01:00
RegexDebug.h Everywhere: Use CMake to generate AK/Debug.h. 2021-01-25 09:47:36 +01:00
RegexError.h
RegexLexer.cpp Everywhere: Use CMake to generate AK/Debug.h. 2021-01-25 09:47:36 +01:00
RegexLexer.h
RegexMatch.h Everywhere: Replace a bundle of dbg with dbgln. 2021-01-22 22:14:30 +01:00
RegexMatcher.cpp Everywhere: Use CMake to generate AK/Debug.h. 2021-01-25 09:47:36 +01:00
RegexMatcher.h
RegexOptions.h
RegexParser.cpp Everywhere: Use CMake to generate AK/Debug.h. 2021-01-25 09:47:36 +01:00
RegexParser.h