We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d57e9e commit 815969bCopy full SHA for 815969b
1 file changed
example/Jamfile.v2
@@ -5,5 +5,32 @@
5
project : requirements <library>/boost/python//boost_python ;
6
7
python-extension getting_started1 : getting_started1.cpp ;
8
+
9
+bpl-test test1
10
+ : # Python test driver
11
+ test_getting_started1.py
12
+ # extension modules to use
13
+ getting_started1 ;
14
15
16
python-extension getting_started2 : getting_started2.cpp ;
17
18
+bpl-test test2
19
20
+ test_getting_started2.py
21
22
+ getting_started2 ;
23
24
+python-extension std_pair : std_pair.cpp ;
25
26
+bpl-test test3
27
28
+ test_std_pair.py
29
30
+ std_pair_ext ;
31
32
+# Don't run tests by default
33
+explicit test1 test2 test3 ;
34
+alias test : test1 test2 test3 ;
35
+explicit test ;
36
0 commit comments