File: Jamfile

package info (click to toggle)
boost1.88 1.88.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 576,932 kB
  • sloc: cpp: 4,149,234; xml: 136,789; ansic: 35,092; python: 33,910; asm: 5,698; sh: 4,604; ada: 1,681; makefile: 1,633; pascal: 1,139; perl: 1,124; sql: 640; yacc: 478; ruby: 271; java: 77; lisp: 24; csh: 6
file content (68 lines) | stat: -rw-r--r-- 1,864 bytes parent folder | download | duplicates (3)
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
57
58
59
60
61
62
63
64
65
66
67
68
#==============================================================================
#   Copyright (c) 2001-2014 Joel de Guzman
#
#   Distributed under the Boost Software License, Version 1.0. (See accompanying
#   file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#==============================================================================
import-search /boost/config/checks ;
import config : requires ;

project spirit-x3-example
    : requirements
        <include>.
        <c++-template-depth>512
        <toolset>gcc:<cxxflags>-std=c++1y
        <toolset>clang:<cxxflags>-std=c++1y
        <toolset>darwin:<cxxflags>-std=c++1y
    :
    :
    ;

exe x3_num_list1 : num_list/num_list1.cpp ;
exe x3_num_list2 : num_list/num_list2.cpp ;
exe x3_num_list3 : num_list/num_list3.cpp ;
exe x3_num_list4 : num_list/num_list4.cpp ;

exe x3_actions : actions.cpp ;
exe x3_complex_number : complex_number.cpp ;
exe x3_sum : sum.cpp ;
exe x3_roman : roman.cpp ;
exe x3_employee : employee.cpp ;

exe x3_rexpr : rexpr/rexpr_min/rexpr.cpp ;

build-project rexpr/rexpr_full ;

exe x3_calc1 : calc/calc1.cpp ;
exe x3_calc2 : calc/calc2.cpp ;
exe x3_calc4 : calc/calc4.cpp ;
exe x3_calc4b : calc/calc4b.cpp ;
exe x3_calc5 : calc/calc5.cpp ;
exe x3_calc6 : calc/calc6.cpp ;

exe x3_calc7 :
    calc/calc7/vm.cpp
    calc/calc7/compiler.cpp
    calc/calc7/expression.cpp
    calc/calc7/main.cpp
;

exe x3_calc8 :
    /boost/filesystem//boost_filesystem
    calc/calc8/vm.cpp
    calc/calc8/compiler.cpp
    calc/calc8/expression.cpp
    calc/calc8/statement.cpp
    calc/calc8/main.cpp
;

exe x3_calc9 :
    /boost/filesystem//boost_filesystem
    calc/calc9/vm.cpp
    calc/calc9/compiler.cpp
    calc/calc9/expression.cpp
    calc/calc9/statement.cpp
    calc/calc9/main.cpp
;

exe x3_tuple : attributes/tuple.cpp : [ requires cxx17_structured_bindings ] ;