mirror of
https://github.com/boostorg/bloom.git
synced 2026-01-19 16:12:10 +00:00
23 lines
674 B
Plaintext
23 lines
674 B
Plaintext
# Copyright 2025 Joaquín M López Muñoz.
|
|
# 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)
|
|
#
|
|
# See http://www.boost.org/libs/bloom for library home page.
|
|
|
|
import config : requires ;
|
|
|
|
project
|
|
: requirements
|
|
<library>/boost/bloom//boost_bloom
|
|
[ requires cxx11_noexcept ] # used as a proxy for C++11 support
|
|
;
|
|
|
|
exe basic : basic.cpp ;
|
|
exe genome : genome.cpp : [ requires cxx17_if_constexpr ] ;
|
|
exe rolling_filter : rolling_filter.cpp ;
|
|
exe serialization
|
|
: serialization.cpp
|
|
: <library>/boost/core//boost_core
|
|
<library>/boost/uuid//boost_uuid
|
|
; |