forked from boostorg/bloom
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJamfile.v2
More file actions
23 lines (20 loc) · 677 Bytes
/
Copy pathJamfile.v2
File metadata and controls
23 lines (20 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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
;