{"id":16939267,"url":"https://github.com/vslavik/xmlwrapp","last_synced_at":"2025-10-11T08:07:12.702Z","repository":{"id":48438615,"uuid":"2029971","full_name":"vslavik/xmlwrapp","owner":"vslavik","description":"Lightweight C++ XML parsing library","archived":false,"fork":false,"pushed_at":"2025-07-23T13:20:46.000Z","size":3134,"stargazers_count":41,"open_issues_count":3,"forks_count":17,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-09-04T06:49:32.308Z","etag":null,"topics":["c-plus-plus","xml","xml-parser"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vslavik.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2011-07-11T11:52:53.000Z","updated_at":"2025-08-03T21:48:13.000Z","dependencies_parsed_at":"2024-06-21T15:21:06.236Z","dependency_job_id":"5ccbe998-f52f-466a-b689-71156c99d93f","html_url":"https://github.com/vslavik/xmlwrapp","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/vslavik/xmlwrapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vslavik%2Fxmlwrapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vslavik%2Fxmlwrapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vslavik%2Fxmlwrapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vslavik%2Fxmlwrapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vslavik","download_url":"https://codeload.github.com/vslavik/xmlwrapp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vslavik%2Fxmlwrapp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279005966,"owners_count":26084004,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["c-plus-plus","xml","xml-parser"],"created_at":"2024-10-13T21:04:11.318Z","updated_at":"2025-10-11T08:07:12.697Z","avatar_url":"https://github.com/vslavik.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"0. Introduction\n---------------\n\nxmlwrapp is a modern style C++ library for working with XML data, built atop\nthe venerable libxml2 C library.\n\nAdditional resources, bug reports, latest sources etc. can be found on the\n[project page](https://vslavik.github.io/xmlwrapp/).\n\nPackages tarballs can be downloaded from the same location or from the\n[release page](https://github.com/vslavik/xmlwrapp/releases).\n\nIf you need help or want to discuss xmlwrapp, feel free to join the discussion\ngroup hosted at [Google Groups](https://groups.google.com/group/xmlwrapp)\nor email directly to xmlwrapp@googlegroups.com.\n\n\n1. Requirements\n---------------\n\nIn order to build xmlwrapp, you need libxml2 version 2.4.28 or newer. When\nbuilding with XSLT support, libxslt 1.1.6 or newer is required. Both libraries\nare available from [libxml2 home page](https://xmlsoft.org).\n\n\n2. Building on Unix\n-------------------\n\nOn Unix, either autotools-based build system or CMake can be used.\n\n## Building using Autotools\n\nBuilding xmlwrapp is usually as simple as running the following three commands:\n\n    $ ./configure\n    $ make\n    $ make install\n\nSee the output of `./configure --help` for additional settings and options.\n\nCross-compiling, notably for Windows, is also supported using the usual\n`--host` option, e.g. `--host=x86_64-w64-mingw32`.\n\nNote that if you obtained the library sources from Git, and not from the\nrelease archives, `configure` script won't exist and you will need to run\n\n    $ autoreconf -i\n\nto create it and other build files.\n\n## Building using CMake\n\nBuilding xmlwrapp using CMake is also straightforward. Just do the following:\n\n    $ cmake -S . -B build-dir\n    $ cmake --build build-dir\n    $ cmake --install build-dir\n\nThe usual CMake `BUILD_SHARED_LIBS` option is supported for selecting whether\nshared (default) or static libraries should be built, use `cmake -L` to see the\nother available options.\n\n\n3. Building on Windows\n----------------------\n\nThe library can be built either with Microsoft Visual C++ compiler, using the\nproject files from located in platform/Win32 directory or in the same way as\nunder Unix, i.e. with configure and make, if you have Cygwin installed (note\nthat MinGW can be used as a cross-compiler under Cygwin, producing native\nlibraries without any Cygwin dependencies). In either case, you will need to\neither build libxml and libxslt for Windows yourself or download the already\nbuilt versions from http://www.zlatkovic.com/libxml.en.html or elsewhere.\n\n\n4. Using xmlwrapp\n-----------------\n\nOn Unix, you should use pkg-config to get compiler flags for xmlwrapp or\nxsltwrapp libraries:\n\n    $ c++ -c `pkg-config --cflags xmlwrapp` ...\n    $ c++ -o ... `pkg-config --libs xmlwrapp`\n\nOn Windows, you need to link against xmlwrapp libraries and add the include/\ndirectory to compiler's headers search path.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvslavik%2Fxmlwrapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvslavik%2Fxmlwrapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvslavik%2Fxmlwrapp/lists"}