2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-15 13:02:11 +00:00

Add example of calling Python modules from Boost.Build.

[SVN r34474]
This commit is contained in:
Vladimir Prus
2006-07-07 07:14:46 +00:00
parent a7f3c8a3c4
commit eaa779f560
4 changed files with 38 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
# Import the Python rules to Boost.Build
PYTHON_IMPORT_RULE python_helpers : test1 : python_helpers : test1 ;
PYTHON_IMPORT_RULE python_helpers : test2 : python_helpers : test2 ;
# Make the new rules accessible to everybody who imports us.
EXPORT python_helpers : test1 test2 ;