File: Jamroot.fold

package info (click to toggle)
kf6-syntax-highlighting 6.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 47,568 kB
  • sloc: xml: 197,750; cpp: 12,850; python: 3,023; sh: 955; perl: 546; ruby: 488; pascal: 393; javascript: 161; php: 150; jsp: 132; lisp: 131; haskell: 124; ada: 119; ansic: 107; makefile: 96; f90: 94; ml: 85; cobol: 81; yacc: 71; csh: 62; erlang: 54; sql: 51; java: 47; objc: 37; awk: 31; asm: 30; tcl: 29; fortran: 18; cs: 10
file content (248 lines) | stat: -rw-r--r-- 7,199 bytes parent folder | download | duplicates (4)
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
project
    : requirements <include>/home/ghost/Work/boost <threading>multi
    ;
project a : : debug ;

exe hello : hello.cpp ;

exe hello
    : hello.cpp
    : <include>boost <threading>multi
    ;
exe app : app.cpp ../util/foo//bar ;
exe important : main.cpp helpers/<link>static ;

exe b : [ glob *.cpp ] ;

lib tools :
    [ glob *.cpp ] ;

lib tools : [ glob *.cpp : file_to_exclude.cpp bad*.cpp ] ;

lib network : network.cpp
    : <conditional>@my-rule
    ;

DEPENDS foo.o : foo.c ;

using msvc : : "Z:/Programs/Microsoft Visual Studio/vc98/bin/cl" ;
using msvc : : echo Compiling && foo/bar/baz/cl ;
using gcc : 5 : : <cxxflags>"-std=c++14 -O2" ;
using clang : 3.9 : : <cxxflags>-std=c++14 <cxxflags>-O2 ;
exe test3 : test3.cpp : -<threading>multi ;
XYZ += <cxxflags>-Wzero-as-null-pointer-constant&&-Wno-zero-as-null-pointer-constant ;
exe hello : hello.cpp : <os>NT,<toolset>gcc:<link>static ;

install dist : hello helpers :
    <variant>release:<location>dist/release
    <variant>debug:<location>dist/debug ;
install dist2 : hello helpers : <location>$(DIST) ;

exe app : app.cpp : [ check-target-builds has_foo "System has foo" : <library>foo : <define>FOO_MISSING=1 ] ;

import path : * ;

using python
: 2.7 # version
: # Interpreter/path to dir
: /usr/include/python2.7 # includes
: /usr/lib/x86_64-linux-gnu # libs
: # conditions
;

xx ;
xx ;; ;
xx ;a ;
xx a; ;
xx ;a; ;

## comment title
# BUG
# TODO
# aTODOa

#| multi
line
comment
TODO
bla bla
|#

if cond <beginfold id='1'>{</beginfold id='1'>
    statements ;
<endfold id='1'>}</endfold id='1'>
else <beginfold id='1'>{</beginfold id='1'>
    statements ;
<endfold id='1'>}</endfold id='1'>

for var in list <beginfold id='1'>{</beginfold id='1'>
    statements ;
<endfold id='1'>}</endfold id='1'>

while cond <beginfold id='1'>{</beginfold id='1'>
    statements ;
<endfold id='1'>}</endfold id='1'>

switch value
<beginfold id='1'>{</beginfold id='1'>
    case pattern1 : statements ;
    case pattern2 : statements ;
    other ;
<endfold id='1'>}</endfold id='1'>

if xxinxx <beginfold id='1'>{</beginfold id='1'>
<endfold id='1'>}</endfold id='1'>

ifxxx s ;

rule a? ( x )
<beginfold id='1'>{</beginfold id='1'>
  echo $(x) ;
<endfold id='1'>}</endfold id='1'>
a? 23 ;

local rule test ( a )
<beginfold id='1'>{</beginfold id='1'>
<endfold id='1'>}</endfold id='1'>

rule example
 (
     parameter1 :
     parameter2 ? :
     parameter3 + :
     parameter4 *
 )
 <beginfold id='1'>{</beginfold id='1'>
   if <variant>debug in $(properties)
   <beginfold id='1'>{</beginfold id='1'>
       OPTIONS on $(targets) = --debug ;
   <endfold id='1'>}</endfold id='1'>
 <endfold id='1'>}</endfold id='1'>

rule my-rule ( properties * )
<beginfold id='1'>{</beginfold id='1'>
    local result ;
    if <toolset>gcc <optimization>speed in $(properties)
    <beginfold id='1'>{</beginfold id='1'>
        result += <define>USE_INLINE_ASSEMBLER ;
        return $(result) ;
    <endfold id='1'>}</endfold id='1'>

    local m = [ CALLER_MODULE ] ;
    local result ;
    for v in $(values)
    <beginfold id='1'>{</beginfold id='1'>
        if [ modules.call-in $(m) : $(f) $(v) ]
        <beginfold id='1'>{</beginfold id='1'>
            result += $(v) ;
        <endfold id='1'>}</endfold id='1'>
    <endfold id='1'>}</endfold id='1'>
    return result ;
    return <name>$(name) ;
    return [ virtual-target.register $(t) ] ;
    return [ sequence.transform virtual-target.register : $(targets) ] ;
<endfold id='1'>}</endfold id='1'>

rule run ( project name ? : property-set : sources * )
<beginfold id='1'>{</beginfold id='1'>
    if [ $(s).type ] = PY
    <beginfold id='1'>{</beginfold id='1'>
        python = $(s) ;
    <endfold id='1'>}</endfold id='1'>

    local new-sources ;
    for local s in $(sources)
    <beginfold id='1'>{</beginfold id='1'>
        if [ type.is-derived [ $(s).type ] CPP ]
        <beginfold id='1'>{</beginfold id='1'>
            local name = [ $(s).name ] ;    # get the target's basename
            if $(name) = [ $(python).name ]
            <beginfold id='1'>{</beginfold id='1'>
                name = $(name)_ext ;        # rename the target
            <endfold id='1'>}</endfold id='1'>
            new-sources += [ generators.construct $(project) $(name) :
              PYTHON_EXTENSION : $(property-set) : $(s) $(libs) ] ;
        <endfold id='1'>}</endfold id='1'>
    <endfold id='1'>}</endfold id='1'>

    result = [ construct-result $(python) $(new-sources) : $(project) $(name)
                 : $(property-set) ] ;
<endfold id='1'>}</endfold id='1'>


rule link
<beginfold id='1'>{</beginfold id='1'>
    DEPENDS $(<) : [ on $(<) return $(DEF_FILE) ] ;
<endfold id='1'>}</endfold id='1'>


actions link bind DEF_FILE
<beginfold id='1'>{</beginfold id='1'>
    <beginfold id='2'>$(</beginfold id='2'>.LD<endfold id='2'>)</endfold id='2'> .... /DEF:<beginfold id='2'>$(</beginfold id='2'>DEF_FILE<endfold id='2'>)</endfold id='2'> ....
<endfold id='1'>}</endfold id='1'>

actions create-file-from-another
<beginfold id='1'>{</beginfold id='1'>
    create-file-from-another <beginfold id='2'>$(</beginfold id='2'>OPTIONS<endfold id='2'>)</endfold id='2'> <beginfold id='2'>$(</beginfold id='2'><<endfold id='2'>)</endfold id='2'> <beginfold id='2'>$(</beginfold id='2'>><endfold id='2'>)</endfold id='2'>
<endfold id='1'>}</endfold id='1'>


mypackage =
  [ pkg-config.import mypackage : usage-requirements <conditional>@define_ns
  ] ;

me = [ modules.binding $(__name__) ] ;

local ZLIB_INCLUDE = [ modules.peek : ZLIB_INCLUDE ] ;

local t = [ new file-target $(name) : CPP : $(project) : $(a) ] ;

$(var) field1 : field2 : ... : fieldN ;
$(var)o aaaa ;

on target $(var) field1 : field2 : ... : fieldN ;

[ $(var) field1 : field2 : ... : fieldN ]
[ on target $(var) field1 : field2 : ... : fieldN ]

local key = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\App Paths" ;
local values = [ W32_GETREGNAMES "$(key)\\$(subkey)" : values ] ;

variable = $(b) $(c) ;
variable += elements ;
variable on targets = elements ;
variable on targets += "elements" ;
variable default = elements ;
variable ?= elements ;

defs += <define>NAME='\"$(VALUE)\"' ;

x = $($(Z)) ;
x = $(Z)x ;
x = x$(Z) ;
x = x$(Z)x ;

x = "C:\\Program Files\\Borland" ; ECHO $(x:T) ;

module my_module # my module
<beginfold id='1'>{</beginfold id='1'>
    rule salute ( x ) <beginfold id='1'>{</beginfold id='1'> ECHO $(x), world ; <endfold id='1'>}</endfold id='1'>
    rule greet ( ) <beginfold id='1'>{</beginfold id='1'> salute hello ; <endfold id='1'>}</endfold id='1'>
    greet ; # ok
<endfold id='1'>}</endfold id='1'>

class verbatim-scanner : common-scanner
<beginfold id='1'>{</beginfold id='1'>
    rule pattern ( )
    <beginfold id='1'>{</beginfold id='1'>
        return "//###include[ ]*\"([^\"]*)\"" ;
    <endfold id='1'>}</endfold id='1'>
    greet ; # error
<endfold id='1'>}</endfold id='1'>

# test crazy (and valid) name
a<b> a<b> [ a<b> a<b> a] ] ;
rule a<b>() () <beginfold id='1'>{</beginfold id='1'> <endfold id='1'>}</endfold id='1'>
actions a<b> <beginfold id='1'>{</beginfold id='1'> <endfold id='1'>}</endfold id='1'>
local a<x> ;
local a<x> = a<b> ;