22 lines
531 B
Plaintext
22 lines
531 B
Plaintext
#
|
|
# Copyright Andrey Semashev 2007 - 2015.
|
|
# 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 project ;
|
|
import log-arch-config ;
|
|
|
|
project /boost/log/x86-extensions
|
|
: source-location .
|
|
: requirements
|
|
<pch>off
|
|
;
|
|
|
|
obj ssse3 : ssse3.cpp : <conditional>@log-arch-config.ssse3-flags ;
|
|
explicit ssse3 ;
|
|
|
|
obj avx2 : avx2.cpp : <conditional>@log-arch-config.avx2-flags ;
|
|
explicit avx2 ;
|