Jamfile.jam 656 B

12345678910111213141516171819202122
  1. #
  2. # Copyright Andrey Semashev 2007 - 2015.
  3. # Distributed under the Boost Software License, Version 1.0.
  4. # (See accompanying file LICENSE_1_0.txt or copy at
  5. # http://www.boost.org/LICENSE_1_0.txt)
  6. #
  7. import project ;
  8. import log-platform-config ;
  9. using mc ;
  10. project /boost/log/message-compiler
  11. : source-location ../../src
  12. : requirements
  13. <conditional>@log-platform-config.set-platform-defines
  14. <pch>off
  15. ;
  16. obj simple_event_log : windows/simple_event_log.mc ;
  17. # This test target verifies that Message Compiler (mc) is available and supported by the current toolset
  18. alias test-availability : simple_event_log ;