2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-19 16:12:14 +00:00
Files
build/test/test.jam
René Ferdinand Rivera Morell c30bce8e2d Add property-db class to record & write structured data. (#397)
Add property-db class to record & write structured data.

This adds a utility to record structured data in the form of a property database where the keys are a property path with string or number values. The data can be converted to a string, or written to a file, as JSON.
2024-05-27 20:04:58 -05:00

41 lines
716 B
Plaintext

# Copyright 2001, 2002, 2003 Dave Abrahams
# Copyright 2002 Rene Rivera
# Copyright 2002, 2003, 2004 Vladimir Prus
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE.txt or https://www.bfgroup.xyz/b2/LICENSE.txt)
# util
import assert ;
import db ;
import container ;
import indirect ;
import numbers ;
import order ;
import os ;
import path ;
import print ;
import regex ;
import sequence ;
import set ;
import string ;
import utility ;
# kernel
import "class" ;
import errors ;
import modules ;
# build
import build-request ;
import feature ;
import property ;
import toolset ;
import type ;
import version ;
# tools
import common ;
actions nothing { }
nothing all ;