mirror of
https://github.com/boostorg/unordered.git
synced 2026-04-12 20:56:08 +02:00
I'm not sure if I'll actually release this example. I don't think it does a good job of demonstrating what I wanted. [SVN r84249]
19 lines
747 B
Plaintext
19 lines
747 B
Plaintext
|
|
# Copyright 2012 Daniel James.
|
|
# 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)
|
|
|
|
import testing ;
|
|
|
|
project unordered-test/example/siphash
|
|
: requirements
|
|
<warnings>all
|
|
<toolset>intel:<warnings>on
|
|
<toolset>gcc:<cxxflags>"-pedantic -Wstrict-aliasing -fstrict-aliasing -Wextra -Wsign-promo -Wunused-parameter -Wconversion -Wno-long-long -Wfloat-equal"
|
|
<toolset>darwin:<cxxflags>"-pedantic -Wstrict-aliasing -fstrict-aliasing -Wextra -Wsign-promo -Wunused-parameter -Wconversion -Wfloat-equal"
|
|
;
|
|
|
|
lib siphash : siphash.cpp siphash_generate.cpp /boost/random//boost_random ;
|
|
|
|
run siphash_example.cpp siphash ;
|