summaryrefslogtreecommitdiff
path: root/tools/build/v2/example/make/jamroot.jam
blob: 7bb98e3537a9d198c85f087fc1c2dde4bf425462 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import feature ;
import toolset ;

path-constant HERE : . ;
make main.cpp : main_cpp.pro : @do-something ;

feature.feature example.python.interpreter : : free ;

toolset.flags do-something PYTHON : <example.python.interpreter> ;
actions do-something
{
    "$(PYTHON:E=python)" "$(HERE)/foo.py" "$(>)" "$(<)"
}