mirror of
https://github.com/tristanpenman/valijson.git
synced 2025-03-05 03:37:28 +01:00

This commit contains the third major design of a C++ library for JSON Schema validation. It is definitely not what I would consider production-ready, but I do think that the overall design of the library is robust.
16 lines
462 B
Perl
Executable File
16 lines
462 B
Perl
Executable File
#!/usr/bin/perl -w
|
|
|
|
# Copyright (c) 2003-2013 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
|
#
|
|
# Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
use strict;
|
|
|
|
system("doxygen reference.dox");
|
|
chdir("xml");
|
|
system("xsltproc combine.xslt index.xml > all.xml");
|
|
chdir("..");
|
|
system("xsltproc reference.xsl xml/all.xml > reference.qbk");
|
|
system("rm -rf xml");
|