2
0
mirror of https://github.com/boostorg/log.git synced 2026-02-20 14:52:15 +00:00
Files
log/config/native-syslog/Jamfile.jam
Andrey Semashev b4399c0407 Moved SSSE3/AVX2 compiler flag deduction to a common submodule.
Also, use gcc-style command line arguments by default as most compilers
tend to support them.

Marked config obj targets explicit.
2020-09-08 02:50:08 +03:00

20 lines
491 B
Plaintext

#
# Copyright Andrey Semashev 2016.
# 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-platform-config ;
project /boost/log/native-syslog
: source-location .
: requirements
<conditional>@log-platform-config.set-platform-defines
<pch>off
;
obj native_syslog : native_syslog.cpp ;
explicit native_syslog ;