diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-22 20:52:00 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-22 20:52:00 +0200 |
| commit | 058aeef80e8a33d0e385f284b23eeb117f5ec547 (patch) | |
| tree | 9a7a96b7cde32cf66b6202f32ace18335ecc9cdb /lib/cmark/cmark.pri | |
| parent | e9a0e392c6462712e6f02f3565b8a8cc1652952a (diff) | |
| download | kristall-058aeef80e8a33d0e385f284b23eeb117f5ec547.tar.gz | |
Includes cmark into build.
Diffstat (limited to 'lib/cmark/cmark.pri')
| -rw-r--r-- | lib/cmark/cmark.pri | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/lib/cmark/cmark.pri b/lib/cmark/cmark.pri new file mode 100644 index 0000000..01aadfb --- /dev/null +++ b/lib/cmark/cmark.pri @@ -0,0 +1,44 @@ + +HEADERS += \ + $$PWD/src/buffer.h \ + $$PWD/src/chunk.h \ + $$PWD/src/cmark.h \ + $$PWD/src/config.h \ + $$PWD/src/cmark_ctype.h \ + $$PWD/src/config.h \ + $$PWD/src/houdini.h \ + $$PWD/src/inlines.h \ + $$PWD/src/iterator.h \ + $$PWD/src/node.h \ + $$PWD/src/parser.h \ + $$PWD/src/references.h \ + $$PWD/src/render.h \ + $$PWD/src/scanners.h \ + $$PWD/src/utf8.h + +SOURCES += \ + $$PWD/src/blocks.c \ + $$PWD/src/buffer.c \ + $$PWD/src/cmark.c \ + $$PWD/src/cmark_ctype.c \ + $$PWD/src/commonmark.c \ + $$PWD/src/houdini_href_e.c \ + $$PWD/src/houdini_html_e.c \ + $$PWD/src/houdini_html_u.c \ + $$PWD/src/inlines.c \ + $$PWD/src/iterator.c \ + $$PWD/src/node.c \ + $$PWD/src/references.c \ + $$PWD/src/render.c \ + $$PWD/src/scanners.c \ + $$PWD/src/utf8.c \ + $$PWD/src/html.c \ + $$PWD/src/xml.c + +INCLUDEPATH += $$PWD/src +DEPENDPATH += $$PWD/src + +# exluded modules: +# $$PWD/src/latex.c \ +# $$PWD/src/man.c \ +# -- reserved for HTML :) |
