Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions build.jam
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright René Ferdinand Rivera Morell 2023-2024
# 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)

require-b2 5.2 ;

project /boost/lambda2
: common-requirements
<include>include
;

explicit
[ alias boost_lambda2 : : : : <library>$(boost_dependencies) ]
[ alias all : boost_lambda2 test ]
;

call-if : boost-library lambda2
;

9 changes: 7 additions & 2 deletions test/Jamfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,23 @@
# Distributed under the Boost Software License, Version 1.0.
# https://www.boost.org/LICENSE_1_0.txt

import-search /boost/config/checks ;

import testing ;
import ../../config/checks/config : requires ;
import config : requires ;

project : requirements
<library>/boost/config//boost_config
<library>/boost/core//boost_core

<warnings>extra

[ requires cxx14_return_type_deduction ]

<toolset>msvc:<warnings-as-errors>on
<toolset>clang:<warnings-as-errors>on
<toolset>gcc:<warnings-as-errors>on ;
<toolset>gcc:<warnings-as-errors>on
;

run quick.cpp ;
run lambda2_test.cpp ;
Expand Down