summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/inspect/build/Jamfile.v2
blob: e3a53a03dd9fd93fa771e88601a1f49b29010b48 (plain)
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
47
48
49
50
51
52
53
54
55
56
# Inspect Jamfile

# Copyright Vladimir Prus

# Distributed under the Boost Software License, Version 1.0.
# See http://www.boost.org/LICENSE_1_0.txt

project
    :
    requirements
    :
    source-location .. 
    ;

exe inspect
    :
    apple_macro_check.cpp
    ascii_check.cpp
    assert_macro_check.cpp
    copyright_check.cpp
    crlf_check.cpp
    deprecated_macro_check.cpp
    end_check.cpp
    inspect.cpp
    license_check.cpp
    link_check.cpp
    minmax_check.cpp
    path_name_check.cpp
    tab_check.cpp
    unnamed_namespace_check.cpp
    /boost//filesystem/<link>static
    /boost//regex/<link>static
    :
    :
    release
    ;

install dist-bin
    :
    inspect
    :
    <install-type>EXE
    <location>../../../dist/bin
    :
    release
    ;

install dist-lib
    :
    inspect
    :
    <install-type>LIB
    <location>../../../dist/lib
    :
    release
    ;