• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
6import python ;
7
8project tutorial
9  : requirements
10    <location>.
11    ;
12
13python-extension hello_ext : hello.cpp ;
14
15run-test hello : hello_ext hello.py ;
16
17alias test : hello ;
18explicit test ;
19
20