2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-02 08:42:13 +00:00
Files
build/example/make/jamroot.jam
Vladimir Prus b6aaec31d7 Declare the feature used in the example.
[SVN r64149]
2010-07-19 07:16:18 +00:00

14 lines
311 B
Plaintext

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" "$(>)" "$(<)"
}