2
0
mirror of https://github.com/boostorg/log.git synced 2026-01-19 16:32:09 +00:00
Files
log/config/message-compiler/Jamfile.jam
Andrey Semashev 6db171e348 Specify relative path to log-platform-config in config checks.
This allows to use the config checks from locations other than the
library project.
2025-06-19 02:29:02 +03:00

25 lines
697 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 ../../build/log-platform-config ;
using mc ;
project
: 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 ;