2
0
mirror of https://github.com/boostorg/log.git synced 2026-02-19 14:32:31 +00:00
Files
log/config/message-compiler/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

25 lines
713 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-platform-config ;
using mc ;
project /boost/log/message-compiler
: source-location ../../src
: requirements
<conditional>@log-platform-config.set-platform-defines
<pch>off
;
obj simple_event_log : windows/simple_event_log.mc ;
explicit simple_event_log ;
# This test target verifies that Message Compiler (mc) is available and supported by the current toolset
alias test-availability : simple_event_log ;
explicit test-availability ;