Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
added set to build infrastructure
  • Loading branch information
FadyEssam committed Mar 3, 2019
commit 430b3f1a73dc8d489f7ec82cc55e0faf40c339b3
1 change: 1 addition & 0 deletions build/Jamfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ lib boost_python
tuple.cpp
str.cpp
slice.cpp
set.cpp

converter/from_python.cpp
converter/registry.cpp
Expand Down
1 change: 1 addition & 0 deletions src/fabscript
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ bpl = library('boost_python' + root.py_suffix,
['list.cpp',
'long.cpp',
'dict.cpp',
'set.cpp',
'tuple.cpp',
'str.cpp',
'slice.cpp',
Expand Down
1 change: 1 addition & 0 deletions test/Jamfile
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ bpl-test crossmod_exception
[ bpl-test list ]
[ bpl-test long ]
[ bpl-test dict ]
[ bpl-test set ]
[ bpl-test tuple ]
[ bpl-test str ]
[ bpl-test slice ]
Expand Down
1 change: 1 addition & 0 deletions test/fabscript
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ for t in [('injected',),
('list',),
('long',),
('dict',),
('set',),
('tuple',),
('str',),
('slice',),
Expand Down