Skip to content

Commit 430b3f1

Browse files
committed
added set to build infrastructure
1 parent 6317791 commit 430b3f1

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

Diff for: build/Jamfile

+1
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ lib boost_python
4848
tuple.cpp
4949
str.cpp
5050
slice.cpp
51+
set.cpp
5152

5253
converter/from_python.cpp
5354
converter/registry.cpp

Diff for: src/fabscript

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ bpl = library('boost_python' + root.py_suffix,
1717
['list.cpp',
1818
'long.cpp',
1919
'dict.cpp',
20+
'set.cpp',
2021
'tuple.cpp',
2122
'str.cpp',
2223
'slice.cpp',

Diff for: test/Jamfile

+1
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ bpl-test crossmod_exception
135135
[ bpl-test list ]
136136
[ bpl-test long ]
137137
[ bpl-test dict ]
138+
[ bpl-test set ]
138139
[ bpl-test tuple ]
139140
[ bpl-test str ]
140141
[ bpl-test slice ]

Diff for: test/fabscript

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ for t in [('injected',),
8181
('list',),
8282
('long',),
8383
('dict',),
84+
('set',),
8485
('tuple',),
8586
('str',),
8687
('slice',),

0 commit comments

Comments
 (0)