diff options
author | Meway <mewaysid92@gmail.com> | 2025-06-30 13:24:20 -0500 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2025-07-01 19:00:09 +0200 |
commit | 9b3c31f76cf208778f478fd9b7a5eefecf9d0f9b (patch) | |
tree | 44cadd5e6c81f3184cfef4fb74c184f5794085ab | |
parent | dfb709e3da28d1e895b1ef278666a61e890a0c6e (diff) | |
download | verse-9b3c31f76cf208778f478fd9b7a5eefecf9d0f9b.tar.gz verse-9b3c31f76cf208778f478fd9b7a5eefecf9d0f9b.tar.bz2 verse-9b3c31f76cf208778f478fd9b7a5eefecf9d0f9b.tar.xz verse-9b3c31f76cf208778f478fd9b7a5eefecf9d0f9b.zip |
Just some changes to compile on windows - fixes libxml compile error
TODO: review
-rw-r--r-- | src/utils/xml/libxml.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/utils/xml/libxml.cpp b/src/utils/xml/libxml.cpp index 9bff3f877..ee25ba6c6 100644 --- a/src/utils/xml/libxml.cpp +++ b/src/utils/xml/libxml.cpp @@ -35,6 +35,11 @@ #include "utils/translation/podict.h" #include <fstream> +#include <libxml/parser.h> +#include <libxml/tree.h> +#include <libxml/xmlreader.h> +#include <libxml/xmlerror.h> + #include "debug.h" |