cstrings can now accept nil
[luabind.git] / test / Jamfile
blobced95210b295bfe6a3826e03af256d15b18ab3b7
1 import testing ;
3 use-project /luabind : ../ ;
5 SOURCES = 
6     test_operators.cpp
7     test_abstract_base.cpp
8     test_lua_classes.cpp
9     test_simple_class.cpp
10     test_free_functions.cpp
11     test_const.cpp
12     test_object.cpp
13     test_implicit_cast.cpp
14     test_iterator.cpp
15     test_scope.cpp
16     test_typetraits.cpp
17     test_construction.cpp
18     test_null_pointer.cpp
19     test_policies.cpp
20     test_yield.cpp
21     test_exceptions.cpp
22     test_attributes.cpp
23     test_held_type.cpp
24     test_separation.cpp
25     test_separate_registration.cpp
26  ;
28 stage bin : /luabind//luabind ;
30 test-suite luabind-test
31     : [ 
32         run main.cpp $(SOURCES) /luabind//luabind /luabind//lua /luabind//lualib
33       ]
34     ;