File: Jamfile

package info (click to toggle)
boost 1.32.0-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 93,952 kB
  • ctags: 128,458
  • sloc: cpp: 492,477; xml: 52,125; python: 13,519; ansic: 13,013; sh: 1,773; yacc: 853; makefile: 526; perl: 418; lex: 110; csh: 6
file content (46 lines) | stat: -rw-r--r-- 829 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
subproject libs/assign/test ;

SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ;

test-suite "assign"
    : [ run
            basic.cpp
        : basic_usage
       ]         
    : [ run
            array.cpp
        : array
       ]         
    : [ run
            std.cpp
        : std
       ]         
    : [ run
            list_of.cpp
        : list_of
       ]         
    : [ run
            list_inserter.cpp
        : list_inserter
       ]         
    : [ run
            list_of_workaround.cpp
        : list_of_workaround
       ] 
    : [ run
            email_example.cpp
        : email
       ] 
     : [ run
            my_vector_example.cpp
        : my_vector
       ] 
    : [ run 
            multi_index_container.cpp
        : multi_index_container
      ]
             
       ;