Jamfile.v2 450 B

123456789101112131415161718
  1. # Boost.Format Library tools Jamfile
  2. #
  3. # Copyright (c) 2017 James E. King, III
  4. #
  5. # Distributed under the Boost Software License, Version 1.0. (See accompany-
  6. # ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. project
  8. : requirements
  9. <define>_CRT_SECURE_NO_WARNINGS
  10. <link>static
  11. ;
  12. exe format_matrix
  13. : format_matrix.cpp
  14. /boost/program_options//boost_program_options
  15. /boost/system//boost_system
  16. ;