Jamfile 380 B

12345678910111213141516171819
  1. # Copyright Stefan Seefeld 2016.
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at
  4. # http://www.boost.org/LICENSE_1_0.txt)
  5. import python ;
  6. project tutorial
  7. : requirements
  8. <location>.
  9. ;
  10. python-extension hello_ext : hello.cpp ;
  11. run-test hello : hello_ext hello.py ;
  12. alias test : hello ;
  13. explicit test ;