diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2017-11-01 12:46:35 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2017-11-01 23:42:02 +0100 |
commit | 1f8c3e3b78e0abb96d06a51eca354ae7ade5deb2 (patch) | |
tree | 6c402b0638d4294315444e72899e66c8ff5d93f9 /tools/Library_tl.mk | |
parent | ecbaf980625a9e7b06abe91c7c70e78f6ad469a7 (diff) |
Extract XmlWriter and XmlWalker from opencl into tools
In opencl we read and writer the profile xml with custom classes
XmlWriter and XmlWalker for reading. This classes are useful in
other places (very similar XmlWriter is used in test), so extract
the code from opencl and move it to a more common place - tools.
Refactoring of other usages will follow.
Change-Id: I8363e87b7c30083d299080adec3f99cb33ebe4cc
Reviewed-on: https://gerrit.libreoffice.org/44149
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'tools/Library_tl.mk')
-rw-r--r-- | tools/Library_tl.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/Library_tl.mk b/tools/Library_tl.mk index f82338d746cf..ec19ac5100c4 100644 --- a/tools/Library_tl.mk +++ b/tools/Library_tl.mk @@ -74,7 +74,10 @@ $(eval $(call gb_Library_add_exception_objects,tl,\ tools/source/stream/vcompat \ tools/source/string/tenccvt \ tools/source/zcodec/zcodec \ + tools/source/xml/XmlWriter \ + tools/source/xml/XmlWalker \ )) + ifeq ($(OS),WNT) $(eval $(call gb_Library_add_exception_objects,tl, \ tools/source/stream/strmwnt \ @@ -92,6 +95,7 @@ $(eval $(call gb_Library_add_generated_exception_objects,tl,\ $(eval $(call gb_Library_use_externals,tl,\ boost_headers \ zlib \ + libxml2 \ )) ifeq ($(OS),LINUX) |