mirror of
https://github.com/boostorg/endian.git
synced 2026-07-09 01:50:48 +02:00
29 lines
718 B
Plaintext
29 lines
718 B
Plaintext
# Boost Endian Library test Jamfile
|
|
|
|
# Copyright Beman Dawes 2006, 2013
|
|
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# See http://www.boost.org/LICENSE_1_0.txt
|
|
|
|
# See library home page at http://www.boost.org/libs/endian
|
|
|
|
project
|
|
: requirements
|
|
<toolset>msvc:<asynch-exceptions>on
|
|
;
|
|
|
|
test-suite "endian"
|
|
:
|
|
[ run buffer_test.cpp # sources
|
|
: # command line
|
|
: # input files
|
|
: # requirements
|
|
: # target name
|
|
]
|
|
[ run endian_test.cpp ]
|
|
[ run endian_operations_test.cpp ]
|
|
[ run endian_in_union_test.cpp ]
|
|
[ run conversion_test.cpp ]
|
|
[ run floating_point_test.cpp ]
|
|
;
|