• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Inspect Jamfile
2
3# Copyright Vladimir Prus
4
5# Distributed under the Boost Software License, Version 1.0.
6# See http://www.boost.org/LICENSE_1_0.txt
7
8project
9    :
10    requirements
11    :
12    source-location ..
13    ;
14
15exe inspect
16    :
17    apple_macro_check.cpp
18    ascii_check.cpp
19    assert_macro_check.cpp
20    copyright_check.cpp
21    crlf_check.cpp
22    deprecated_macro_check.cpp
23    end_check.cpp
24    inspect.cpp
25    license_check.cpp
26    link_check.cpp
27    minmax_check.cpp
28    path_name_check.cpp
29    tab_check.cpp
30    unnamed_namespace_check.cpp
31    /boost//filesystem/<link>static
32    /boost//regex/<link>static
33    :
34    :
35    release
36    ;
37
38install dist-bin
39    :
40    inspect
41    :
42    <install-type>EXE
43    <location>../../../dist/bin
44    :
45    release
46    ;
47
48install dist-lib
49    :
50    inspect
51    :
52    <install-type>LIB
53    <location>../../../dist/lib
54    :
55    release
56    ;
57