Jamfile.v2 541 B

123456789101112131415161718
  1. # Boost.Wave: A Standard compliant C++ preprocessor library
  2. #
  3. # Boost Wave Library Sample Build Jamfile (quick_start)
  4. #
  5. # http://www.boost.org/
  6. #
  7. # Copyright (c) 2001-2011 Hartmut Kaiser. Distributed under the Boost
  8. # Software License, Version 1.0. (See accompanying file
  9. # LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  10. exe quick_start
  11. : ../quick_start.cpp
  12. /boost/wave//boost_wave
  13. /boost/system//boost_system
  14. /boost/thread//boost_thread
  15. /boost/date_time//boost_date_time
  16. ;