diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2021-03-07 11:58:37 +0100 |
|---|---|---|
| committer | Felix Queißner <felix@ib-queissner.de> | 2021-03-08 02:23:16 +0100 |
| commit | 64e271dce2e5aca07abdca8e335b3f7cb9ba1114 (patch) | |
| tree | e3aed2f5057f4db7eccc9505125c3a539ad543c1 /lib/gumbo-parser/gumbo-parser.pri | |
| parent | 2e4bd9e8a1f0ee14fb58c91ae2d94bcb96c6cbce (diff) | |
| download | kristall-64e271dce2e5aca07abdca8e335b3f7cb9ba1114.tar.gz | |
Starts to implement new HTML renderer based on gumbo. Everything is a bit borked and only trivial documents work correctly.
Diffstat (limited to 'lib/gumbo-parser/gumbo-parser.pri')
| -rw-r--r-- | lib/gumbo-parser/gumbo-parser.pri | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/lib/gumbo-parser/gumbo-parser.pri b/lib/gumbo-parser/gumbo-parser.pri new file mode 100644 index 0000000..c4668b8 --- /dev/null +++ b/lib/gumbo-parser/gumbo-parser.pri @@ -0,0 +1,38 @@ +#DISTFILES += \ +# $$PWD/tag.in + +INCLUDEPATH += $$quote($$PWD/include) + +HEADERS += \ + $$PWD/attribute.h \ + $$PWD/char_ref.h \ + $$PWD/char_ref.rl \ + $$PWD/error.h \ + $$PWD/gumbo-utf8.h \ + $$PWD/include/gumbo.h \ + $$PWD/insertion_mode.h \ + $$PWD/parser.h \ + $$PWD/string_buffer.h \ + $$PWD/string_piece.h \ + $$PWD/include/tag_enum.h \ + $$PWD/tag_gperf.h \ + $$PWD/tag_sizes.h \ + $$PWD/tag_strings.h \ + $$PWD/token_type.h \ + $$PWD/tokenizer.h \ + $$PWD/tokenizer_states.h \ + $$PWD/util.h \ + $$PWD/vector.h + +SOURCES += \ + $$PWD/attribute.c \ + $$PWD/char_ref.c \ + $$PWD/error.c \ + $$PWD/gumbo-utf8.c \ + $$PWD/parser.c \ + $$PWD/string_buffer.c \ + $$PWD/string_piece.c \ + $$PWD/tag.c \ + $$PWD/tokenizer.c \ + $$PWD/util.c \ + $$PWD/vector.c |
