2
0
mirror of https://github.com/boostorg/uuid.git synced 2026-01-19 04:42:16 +00:00

Make the library modular usable.

This commit is contained in:
Rene Rivera
2024-03-11 08:38:17 -05:00
parent beeaab4758
commit 28b4ddeddb
3 changed files with 42 additions and 29 deletions

33
build.jam Normal file
View File

@@ -0,0 +1,33 @@
# Copyright René Ferdinand Rivera Morell 2023
# 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)
import project ;
project /boost/uuid
: common-requirements
<source>/boost/assert//boost_assert
<source>/boost/config//boost_config
<source>/boost/container_hash//boost_container_hash
<source>/boost/core//boost_core
<source>/boost/io//boost_io
<source>/boost/move//boost_move
<source>/boost/numeric_conversion//boost_numeric_conversion
<source>/boost/predef//boost_predef
<source>/boost/random//boost_random
<source>/boost/static_assert//boost_static_assert
<source>/boost/throw_exception//boost_throw_exception
<source>/boost/tti//boost_tti
<source>/boost/type_traits//boost_type_traits
<source>/boost/winapi//boost_winapi
<include>include
;
explicit
[ alias boost_uuid ]
[ alias all : boost_uuid test ]
;
call-if : boost-library uuid
;