package.yml

test.cpp
	test.xml
This commit is contained in:
andrejrabcenko 2023-06-20 15:59:40 +03:00 committed by Jacob Heider
parent e2ad251ab3
commit 355a995441
3 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,34 @@
distributable:
url: https://github.com/zeux/pugixml/releases/download/v{{version.marketing}}/pugixml-{{version.marketing}}.tar.gz
strip-components: 1
versions:
github: zeux/pugixml
build:
dependencies:
tea.xyz/gx/cc: c99
tea.xyz/gx/make: '*'
cmake.org: '*'
script: |
cmake -S . -B build $ARGS
cmake --build build
cmake --install build
env:
ARGS:
- -DBUILD_SHARED_LIBS=ON
- -DPUGIXML_BUILD_SHARED_AND_STATIC_LIBS=ON
- -DCMAKE_INSTALL_PREFIX={{prefix}}
- -DCMAKE_BUILD_TYPE=Release
- -DCMAKE_VERBOSE_MAKEFILE=ON
- -Wno-dev
- -DBUILD_TESTING=OFF
test:
dependencies:
tea.xyz/gx/cc: c99
freedesktop.org/pkg-config: '*'
script: |
pkg-config --modversion pugixml | grep {{version.marketing}}
g++ test.cpp -o test -lpugixml
./test

View file

@ -0,0 +1,11 @@
#include <pugixml.hpp>
#include <cassert>
#include <cstring>
int main(int argc, char *argv[]) {
pugi::xml_document doc;
pugi::xml_parse_result result = doc.load_file("test.xml");
assert(result);
assert(strcmp(doc.child_value("root"), "Hello world!") == 0);
}

View file

@ -0,0 +1 @@
<root>Hello world!</root>