2
0
mirror of https://github.com/boostorg/crc.git synced 2026-01-19 04:12:07 +00:00

Update build.jam, test/Jamfile

This commit is contained in:
Peter Dimov
2024-08-21 11:07:06 +03:00
parent 4649bb0db2
commit eedc6e56ef
2 changed files with 14 additions and 13 deletions

View File

@@ -1,20 +1,19 @@
# Copyright René Ferdinand Rivera Morell 2023-2024
# Copyright 2023-2024 René Ferdinand Rivera Morell
# Copyright 2024 Peter Dimov
# 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)
# https://www.boost.org/LICENSE_1_0.txt
require-b2 5.2 ;
project /boost/crc
: common-requirements
<include>include
;
#constant boost_dependencies :
# ;
project /boost/crc ;
explicit
[ alias boost_crc : : : : <library>$(boost_dependencies) ]
[ alias boost_crc : : : : <include>include <library>$(boost_dependencies) ]
[ alias all : boost_crc test ]
;
call-if : boost-library crc
;

View File

@@ -5,13 +5,15 @@
import testing ;
project : requirements
<library>/boost/crc//boost_crc
<library>/boost/core//boost_core
<library>/boost/integer//boost_integer
<library>/boost/timer//boost_timer
;
run crc_test.cpp ;
run crc_test2.cpp ;
run crc_test.cpp
/boost/integer//boost_integer /boost/timer//boost_timer ;
run crc_test2.cpp
/boost/integer//boost_integer ;
run pr15_test.cpp ;
compile issue25_test.cpp ;