bake-toolkit 2.13.1 → 2.14.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/documentation/_build/html/_sources/changelog.txt +7 -0
- data/documentation/_build/html/_sources/index.txt +1 -1
- data/documentation/_build/html/_sources/syntax/adapt_configs.txt +143 -0
- data/documentation/_build/html/_sources/syntax/derive_configs.txt +48 -60
- data/documentation/_build/html/_sources/syntax/syntax.txt +1 -0
- data/documentation/_build/html/_static/syntax.html +9 -6
- data/documentation/_build/html/changelog.html +14 -4
- data/documentation/_build/html/commandline/commandline.html +6 -6
- data/documentation/_build/html/concepts/build_hierarchy.html +4 -4
- data/documentation/_build/html/concepts/concepts.html +4 -4
- data/documentation/_build/html/concepts/the_main_project.html +4 -4
- data/documentation/_build/html/concepts/the_project_meta_file.html +4 -4
- data/documentation/_build/html/genindex.html +4 -4
- data/documentation/_build/html/ide/eclipse/eclipse.html +4 -4
- data/documentation/_build/html/ide/eclipse/how_to_convert_existing_cdt_workspace.html +4 -4
- data/documentation/_build/html/ide/eclipse/how_to_create_a_new_project_in_eclipse.html +4 -4
- data/documentation/_build/html/ide/eclipse/how_to_create_a_workspace_in_eclipse.html +4 -4
- data/documentation/_build/html/ide/eclipse/how_to_install_eclipse_plugin.html +4 -4
- data/documentation/_build/html/ide/eclipse/how_to_use_bake_in_eclipse.html +4 -4
- data/documentation/_build/html/ide/ide_integrations.html +4 -4
- data/documentation/_build/html/ide/vs/how_to_create_vs_projects.html +4 -4
- data/documentation/_build/html/ide/vs/how_to_debug_in_vs.html +4 -4
- data/documentation/_build/html/ide/vs/how_to_used_bake_in_vs.html +4 -4
- data/documentation/_build/html/ide/vs/vs.html +4 -4
- data/documentation/_build/html/ide/vs/vs_install.html +4 -4
- data/documentation/_build/html/index.html +8 -7
- data/documentation/_build/html/install/install_bake.html +4 -4
- data/documentation/_build/html/internal.html +4 -4
- data/documentation/_build/html/known_issues.html +4 -4
- data/documentation/_build/html/license.html +4 -4
- data/documentation/_build/html/performance/performance.html +4 -4
- data/documentation/_build/html/quickstart/quickstart.html +4 -4
- data/documentation/_build/html/search.html +4 -4
- data/documentation/_build/html/searchindex.js +1 -1
- data/documentation/_build/html/syntax/adapt_configs.html +287 -0
- data/documentation/_build/html/syntax/derive_configs.html +57 -116
- data/documentation/_build/html/syntax/project_meta_syntax.html +13 -10
- data/documentation/_build/html/syntax/syntax.html +11 -4
- data/documentation/_build/html/syntax/variable_substitutions.html +4 -4
- data/documentation/_build/html/tips_and_tricks/how_to_use_bake_with_cygwin.html +4 -4
- data/documentation/_build/html/tips_and_tricks/static_code_analysis.html +4 -4
- data/documentation/_build/html/tips_and_tricks/the_bakery.html +4 -4
- data/documentation/_build/html/tips_and_tricks/the_clang.html +4 -4
- data/documentation/_build/html/tips_and_tricks/tips_and_tricks.html +4 -4
- data/documentation/_build/html/why_bake/why_bake.html +6 -6
- data/lib/adapt/config/loader.rb +111 -0
- data/lib/bake/cache.rb +25 -1
- data/lib/bake/config/checks.rb +61 -0
- data/lib/bake/config/loader.rb +41 -40
- data/lib/bake/libElement.rb +54 -55
- data/lib/bake/mergeConfig.rb +170 -154
- data/lib/bake/model/language.rb +2 -4
- data/lib/bake/model/metamodel.rb +31 -19
- data/lib/bake/model/metamodel_ext.rb +4 -1
- data/lib/bake/options/options.rb +12 -3
- data/lib/bake/options/usage.rb +1 -0
- data/lib/blocks/block.rb +0 -4
- data/lib/blocks/blockBase.rb +2 -1
- data/lib/blocks/compile.rb +5 -5
- data/lib/blocks/makefile.rb +1 -1
- data/lib/blocks/showIncludes.rb +13 -2
- data/lib/common/version.rb +3 -3
- data/lib/tocxx.rb +7 -2
- metadata +10 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91d09292a427862e30c5186cd001f2d44a16c443
|
4
|
+
data.tar.gz: 5066825781d3e23c2f579fe515c0cbc018363a2b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 76c2d19fdbc1e7c048be12b8c5cdc4ddb4650619701f6bf3e6967c8f63c6220dee43a9c6260326cbc82f3695018d51d339463351fd869c7f13c7fdf0f24a0ed4
|
7
|
+
data.tar.gz: 54d98c73eb4efffb313ae10a3dd59fac712f01ece458f17cd2e7437db970ddce0de0b1ee94d03b7ef2c47784a344f4ea5b03f689e072717b9976718c182c8b78
|
@@ -1,6 +1,13 @@
|
|
1
1
|
Changelog
|
2
2
|
=========
|
3
3
|
|
4
|
+
January 14, 2015 - bake-toolkit 2.14.0
|
5
|
+
* Added: possibility to change configs via command line, e.g. changing compiler, see "adapt" docu page
|
6
|
+
* Changed: extending configs in a Project.meta file made more generic, see "derive" docu page
|
7
|
+
* Changed: default order of filenames changed, now order in Project.meta has the highest priority as intended. Results of glob patterns are sorted alphabetically as before.
|
8
|
+
* Changed: libraries from makefiles are linked now after other libraries defined from the same config
|
9
|
+
* Added: IncludeDir now possible for CustomConfigs
|
10
|
+
* Bugfix: --abs-paths now works with --incs-and-defs
|
4
11
|
December 23, 2015 - bake-toolkit 2.13.1
|
5
12
|
* Bugfix: merging configs was extremely slow in 2.12.2 and 2.13.0
|
6
13
|
December 23, 2015 - bake-toolkit 2.13.0
|
@@ -0,0 +1,143 @@
|
|
1
|
+
Adapt configs
|
2
|
+
=============
|
3
|
+
|
4
|
+
Introduction
|
5
|
+
************
|
6
|
+
|
7
|
+
If you want to manipulate existing configs without changing them, you can "adapt" them via command line.
|
8
|
+
|
9
|
+
.. code-block:: console
|
10
|
+
|
11
|
+
User@Host:~$ bake test --adapt abc
|
12
|
+
|
13
|
+
bake searches for abc/Adapt.meta within the workspace roots. If found, the configs from the adapt file are parsed:
|
14
|
+
|
15
|
+
.. code-block:: text
|
16
|
+
|
17
|
+
Adapt {
|
18
|
+
ExecutableConfig ... # 0..n
|
19
|
+
LibraryConfig ... # 0..n
|
20
|
+
CustomConfig ... # 0..n
|
21
|
+
}
|
22
|
+
|
23
|
+
Here is an example to change the DefaultToolchain
|
24
|
+
|
25
|
+
.. code-block:: text
|
26
|
+
|
27
|
+
Adapt {
|
28
|
+
ExecutableConfig test, project: __MAIN__, type: replace {
|
29
|
+
DefaultToolchain GCC
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
Effectiveness
|
34
|
+
*************
|
35
|
+
|
36
|
+
The adapt configs can be applied to all configs from regular build. This can be controlled by the config names and the project attributes. The example above
|
37
|
+
is adapted only to the config "test" of the main project. __MAIN__ and __ALL__ are keywords. __MAIN__ means the main project or config, __ALL__ means all
|
38
|
+
projects or configs. If you want to apply the changes only to the top level config, write:
|
39
|
+
|
40
|
+
.. code-block:: text
|
41
|
+
|
42
|
+
ExecutableConfig __MAIN__, project: __MAIN__, ...
|
43
|
+
|
44
|
+
If you want to apply the changes to all configs, write:
|
45
|
+
|
46
|
+
.. code-block:: text
|
47
|
+
|
48
|
+
ExecutableConfig __ALL__, project: __ALL__, ...
|
49
|
+
|
50
|
+
It is possible to mix the keywords with reals project or config names.
|
51
|
+
|
52
|
+
Occurrences
|
53
|
+
***********
|
54
|
+
|
55
|
+
You can specify more configs in one adapt file and you can specify more than one adapt file:
|
56
|
+
|
57
|
+
.. code-block:: text
|
58
|
+
|
59
|
+
Adapt {
|
60
|
+
ExecutableConfig ..., project: ..., type: ... {
|
61
|
+
...
|
62
|
+
}
|
63
|
+
ExecutableConfig ..., project: ..., type: ... {
|
64
|
+
...
|
65
|
+
}
|
66
|
+
LibraryConfig ..., project: ..., type: ... {
|
67
|
+
...
|
68
|
+
}
|
69
|
+
...
|
70
|
+
}
|
71
|
+
|
72
|
+
.. code-block:: console
|
73
|
+
|
74
|
+
User@Host:~$ bake test --adapt abc --adapt xy
|
75
|
+
|
76
|
+
They will be applied in the specified order.
|
77
|
+
|
78
|
+
Types
|
79
|
+
*****
|
80
|
+
|
81
|
+
It is possible to specify the type of adaption:
|
82
|
+
|
83
|
+
.. code-block:: text
|
84
|
+
|
85
|
+
ExecutableConfig ..., type: replace
|
86
|
+
|
87
|
+
The type can be "replace", "remove" or "extend".
|
88
|
+
|
89
|
+
Type: extend
|
90
|
+
------------
|
91
|
+
|
92
|
+
This works exactly like for :doc:`derive_configs`.
|
93
|
+
|
94
|
+
Type: remove
|
95
|
+
------------
|
96
|
+
|
97
|
+
If parent elements can be found which matches to the child elements, they will be removed.
|
98
|
+
|
99
|
+
Example project config:
|
100
|
+
|
101
|
+
.. code-block:: text
|
102
|
+
|
103
|
+
ExecutableConfig test {
|
104
|
+
DefaultToolchain GCC
|
105
|
+
}
|
106
|
+
|
107
|
+
Example adapt configs:
|
108
|
+
|
109
|
+
.. code-block:: text
|
110
|
+
|
111
|
+
ExecutableConfig __ALL__, project: __ALL__, type: remove {
|
112
|
+
DefaultToolchain # remove ok
|
113
|
+
}
|
114
|
+
|
115
|
+
ExecutableConfig __ALL__, project: __ALL__, type: remove {
|
116
|
+
DefaultToolchain GCC # remove ok
|
117
|
+
}
|
118
|
+
|
119
|
+
ExecutableConfig __ALL__, project: __ALL__, type: remove {
|
120
|
+
DefaultToolchain Diab # remove NOT ok
|
121
|
+
}
|
122
|
+
|
123
|
+
ExecutableConfig __ALL__, project: __ALL__, type: remove {
|
124
|
+
DefaultToolchain GCC, eclipseOrder: true # remove NOT ok
|
125
|
+
}
|
126
|
+
|
127
|
+
Type: replace
|
128
|
+
-------------
|
129
|
+
|
130
|
+
This is for convenience. "replace" will remove all elements with the same type and extends the configs.
|
131
|
+
|
132
|
+
Example:
|
133
|
+
|
134
|
+
.. code-block:: text
|
135
|
+
|
136
|
+
ExecutableConfig __ALL__, project: __ALL__, type: replace {
|
137
|
+
Files "*.cpp"
|
138
|
+
DefaultToolchain GCC {
|
139
|
+
Linker command: "link.exe"
|
140
|
+
}
|
141
|
+
}
|
142
|
+
|
143
|
+
This removes all "Files" and the "DefaultToolchain" from the original config regardless their attributes and replaces them by the elements of the adapt config.
|
@@ -19,75 +19,63 @@ Derving a config in bake is pretty straight forward, and looks like this:
|
|
19
19
|
|
20
20
|
The config type of the parent config does not matter, but only settings which are valid in BOTH configs will be inherited.
|
21
21
|
In the example above D gets the dependencies from A, because "Dependency" is valid in all configs, but D does not get
|
22
|
-
the "Files" from A, because "Files" is not valid in CustomConfig.
|
22
|
+
the "Files" from A and B, because "Files" is not valid in CustomConfig.
|
23
23
|
|
24
24
|
|
25
25
|
Inheritance implications
|
26
26
|
************************
|
27
27
|
|
28
|
-
|
29
|
-
Setting Derived
|
30
|
-
============================ =========================================
|
31
|
-
Set parent + child
|
28
|
+
In general it is very easy.
|
32
29
|
|
33
|
-
|
30
|
+
- Elements which can exist more than once (e.g. "Files"), are simply concatenated. First the parent elements, then the client elements.
|
31
|
+
- Elements which can exist only once:
|
32
|
+
|
33
|
+
- if it exists in EITHER child OR parent, use this one
|
34
|
+
- is it exists in BOTH, attributes are merged (child attributes have high priority) and sub elements are inherited recursively
|
34
35
|
|
35
|
-
|
36
|
-
(ordered by line number)
|
36
|
+
The following example
|
37
37
|
|
38
|
-
|
39
|
-
(ordered by line number)
|
40
|
-
|
41
|
-
UserLibrary parent + child
|
42
|
-
(ordered by line number)
|
43
|
-
|
44
|
-
PreSteps parent + child
|
45
|
-
|
46
|
-
PostSteps parent + child
|
47
|
-
|
48
|
-
Makefile used from parent if not
|
49
|
-
in child
|
50
|
-
|
51
|
-
CommandLine used from parent if not
|
52
|
-
in child
|
53
|
-
|
54
|
-
Files parent + child
|
55
|
-
|
56
|
-
ExcludeFiles parent + child
|
57
|
-
|
58
|
-
IncludeDir parent + child
|
59
|
-
|
60
|
-
LinkerScript used from parent if not in child
|
61
|
-
|
62
|
-
ArtifactName used from parent if not in child
|
63
|
-
|
64
|
-
MapFile used from parent if not in child
|
65
|
-
============================ =========================================
|
66
|
-
|
67
|
-
|
68
|
-
============================ =========================================
|
69
|
-
Toolchain Setting Derived
|
70
|
-
============================ =========================================
|
71
|
-
basedOn used from parent if not in child
|
72
|
-
|
73
|
-
outputDir used from parent if not in child
|
74
|
-
|
75
|
-
command used from parent if not in child
|
76
|
-
|
77
|
-
LibPrefixFlags parent + child
|
78
|
-
|
79
|
-
LibPostfixFlags parent + child
|
80
|
-
|
81
|
-
Flags parent + child
|
82
|
-
|
83
|
-
Define parent + child
|
84
|
-
|
85
|
-
InternalDefines used from parent if not in child
|
38
|
+
.. code-block:: text
|
86
39
|
|
87
|
-
|
40
|
+
ExecutableConfig A {
|
41
|
+
Files "x.cpp"
|
42
|
+
Files "y.cpp"
|
43
|
+
ArtifactName "z.exe"
|
44
|
+
DefaultToolchain GCC {
|
45
|
+
Linker {
|
46
|
+
Flags "-O3"
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
50
|
+
ExecutableConfig B, extends: A {
|
51
|
+
Files "z.cpp"
|
52
|
+
IncludeDir "inc"
|
53
|
+
ArtifactName "a.exe"
|
54
|
+
DefaultToolchain Diab {
|
55
|
+
Compiler CPP {
|
56
|
+
Define "TEST"
|
57
|
+
}
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
results implicitly in:
|
88
62
|
|
89
|
-
|
63
|
+
.. code-block:: text
|
90
64
|
|
91
|
-
|
92
|
-
|
65
|
+
ExecutableConfig B {
|
66
|
+
Files "x.cpp"
|
67
|
+
Files "y.cpp"
|
68
|
+
Files "z.cpp"
|
69
|
+
IncludeDir "inc"
|
70
|
+
ArtifactName "a.exe"
|
71
|
+
DefaultToolchain Diab {
|
72
|
+
Compiler CPP {
|
73
|
+
Define "TEST"
|
74
|
+
}
|
75
|
+
Linker {
|
76
|
+
Flags "-O3"
|
77
|
+
}
|
78
|
+
}
|
79
|
+
}
|
80
|
+
|
93
81
|
|
@@ -69,6 +69,8 @@ z-index: 100;
|
|
69
69
|
|
70
70
|
<span><span style="background-color:#EEEEEE;" class="show">
|
71
71
|
<span class="mycomment"># Valid for all config types</span><br><br>
|
72
|
+
<span class="help" onMouseover="showDescription()" onMouseout="notip()">Description</span> <text><br>
|
73
|
+
<span class="help" onMouseover="showIncludeDir()" onMouseout="notip()">IncludeDir</span> <dir>, <span class="help" onMouseover="showInherit()" onMouseout="notip()">inherit</span>: true|false, <span class="help" onMouseover="showInfix()" onMouseout="notip()">inject</span>: front|back<br>
|
72
74
|
<span class="help" onMouseover="showSet()" onMouseout="notip()">Set</span> <variable>, value: <value> | cmd: <line>, <span class="help" onMouseover="showEnv()" onMouseout="notip()">env</span>: true|false<br>
|
73
75
|
<span class="help" onMouseover="showDependency()" onMouseout="notip()">Dependency</span> <project>,
|
74
76
|
<span class="help" onMouseover="showDependencyConfig()" onMouseout="notip()">config</span>: <name><br>
|
@@ -151,7 +153,6 @@ z-index: 100;
|
|
151
153
|
<span class="help" onMouseover="showFilesDefine()" onMouseout="notip()">Define</span> <define><br>
|
152
154
|
}<br>
|
153
155
|
<span class="help" onMouseover="showExcludeFiles()" onMouseout="notip()">ExcludeFiles</span> <pattern><br>
|
154
|
-
<span class="help" onMouseover="showIncludeDir()" onMouseout="notip()">IncludeDir</span> <dir>, <span class="help" onMouseover="showInherit()" onMouseout="notip()">inherit</span>: true|false, <span class="help" onMouseover="showInfix()" onMouseout="notip()">inject</span>: front|back<br>
|
155
156
|
|
156
157
|
</span><br></span>
|
157
158
|
|
@@ -217,7 +218,7 @@ function showResponsible() {
|
|
217
218
|
}
|
218
219
|
|
219
220
|
function showDescription() {
|
220
|
-
str = 'Description of the project.'
|
221
|
+
str = 'Description of the project or config.'
|
221
222
|
ddrivetip("Description", "No", "0..1", "-",str)
|
222
223
|
}
|
223
224
|
|
@@ -403,7 +404,8 @@ function showCommandLine() {
|
|
403
404
|
|
404
405
|
|
405
406
|
function showEclipseOrder() {
|
406
|
-
str = 'If not specified or false, all files are compiled in
|
407
|
+
str = 'If not specified or false, all files are compiled in order of appearance in Project.meta. '+
|
408
|
+
'If the filename is a glob pattern, files are sorted alphabetically.<p>'+
|
407
409
|
'If true, files are compiled in alphabetical order within a folder, '+
|
408
410
|
'but the folders are sorted in reverse alphabetical order.<br>'+
|
409
411
|
'This is only used for backward compatibility.'
|
@@ -662,14 +664,14 @@ return false
|
|
662
664
|
|
663
665
|
function positiontip(e){
|
664
666
|
if (enabletip){
|
665
|
-
var curX=(ns6)?e.
|
666
|
-
var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop;
|
667
|
+
var curX=(ns6)?e.offsetX : event.clientX+ietruebody().scrollLeft;
|
668
|
+
var curY=(ns6)?e.pageY-80 : event.clientY+ietruebody().scrollTop;
|
667
669
|
//Find out how close the mouse is to the corner of the window
|
668
670
|
var rightedge=ie&&!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint
|
669
671
|
var bottomedge=ie&&!window.opera? ietruebody().clientHeight-event.clientY-offsetypoint*2 : window.innerHeight-e.clientY-offsetypoint
|
670
672
|
var bottom=ie&&!window.opera? ietruebody().clientHeight : window.innerHeight
|
671
673
|
|
672
|
-
var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) :
|
674
|
+
var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : offsetxpoint
|
673
675
|
|
674
676
|
//if the horizontal distance isn't enough to accomodate the width of the context menu
|
675
677
|
if (rightedge<tipobj.offsetWidth+offsetxpoint/2)
|
@@ -690,6 +692,7 @@ tipobj.style.visibility="visible"
|
|
690
692
|
}
|
691
693
|
}
|
692
694
|
|
695
|
+
|
693
696
|
function notip(){
|
694
697
|
if (ns6||ie){
|
695
698
|
enabletip=false
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<head>
|
6
6
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
7
7
|
|
8
|
-
<title>Changelog — bake 2.
|
8
|
+
<title>Changelog — bake 2.14.0 documentation</title>
|
9
9
|
|
10
10
|
<link rel="stylesheet" href="_static/basic.css" type="text/css" />
|
11
11
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: './',
|
18
|
-
VERSION: '2.
|
18
|
+
VERSION: '2.14.0',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -29,7 +29,7 @@
|
|
29
29
|
<script type="text/javascript" src="_static/bootstrap-3.3.4/js/bootstrap.min.js"></script>
|
30
30
|
<script type="text/javascript" src="_static/bootstrap-sphinx.js"></script>
|
31
31
|
<link rel="shortcut icon" href="_static/logo_tiny_32.ico"/>
|
32
|
-
<link rel="top" title="bake 2.
|
32
|
+
<link rel="top" title="bake 2.14.0 documentation" href="index.html" />
|
33
33
|
<link rel="next" title="License" href="license.html" />
|
34
34
|
<link rel="prev" title="Known Issues" href="known_issues.html" />
|
35
35
|
<meta charset='utf-8'>
|
@@ -140,6 +140,16 @@
|
|
140
140
|
<div class="section" id="changelog">
|
141
141
|
<h1>Changelog<a class="headerlink" href="#changelog" title="Permalink to this headline">¶</a></h1>
|
142
142
|
<dl class="docutils">
|
143
|
+
<dt>January 14, 2015 - bake-toolkit 2.14.0</dt>
|
144
|
+
<dd><ul class="first last simple">
|
145
|
+
<li>Added: possibility to change configs via command line, e.g. changing compiler, see “adapt” docu page</li>
|
146
|
+
<li>Changed: extending configs in a Project.meta file made more generic, see “derive” docu page</li>
|
147
|
+
<li>Changed: default order of filenames changed, now order in Project.meta has the highest priority as intended. Results of glob patterns are sorted alphabetically as before.</li>
|
148
|
+
<li>Changed: libraries from makefiles are linked now after other libraries defined from the same config</li>
|
149
|
+
<li>Added: IncludeDir now possible for CustomConfigs</li>
|
150
|
+
<li>Bugfix: –abs-paths now works with –incs-and-defs</li>
|
151
|
+
</ul>
|
152
|
+
</dd>
|
143
153
|
<dt>December 23, 2015 - bake-toolkit 2.13.1</dt>
|
144
154
|
<dd><ul class="first last simple">
|
145
155
|
<li>Bugfix: merging configs was extremely slow in 2.12.2 and 2.13.0</li>
|
@@ -842,7 +852,7 @@ write a PreStep which copies the file from the new location to the old one.</p>
|
|
842
852
|
|
843
853
|
</p>
|
844
854
|
<p>
|
845
|
-
© Copyright
|
855
|
+
© Copyright 2016, E.S.R.Labs AG.<br/>
|
846
856
|
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.1.<br/>
|
847
857
|
</p>
|
848
858
|
</div>
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<head>
|
6
6
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
7
7
|
|
8
|
-
<title>Commandline — bake 2.
|
8
|
+
<title>Commandline — bake 2.14.0 documentation</title>
|
9
9
|
|
10
10
|
<link rel="stylesheet" href="../_static/basic.css" type="text/css" />
|
11
11
|
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<script type="text/javascript">
|
16
16
|
var DOCUMENTATION_OPTIONS = {
|
17
17
|
URL_ROOT: '../',
|
18
|
-
VERSION: '2.
|
18
|
+
VERSION: '2.14.0',
|
19
19
|
COLLAPSE_INDEX: false,
|
20
20
|
FILE_SUFFIX: '.html',
|
21
21
|
HAS_SOURCE: true
|
@@ -29,9 +29,9 @@
|
|
29
29
|
<script type="text/javascript" src="../_static/bootstrap-3.3.4/js/bootstrap.min.js"></script>
|
30
30
|
<script type="text/javascript" src="../_static/bootstrap-sphinx.js"></script>
|
31
31
|
<link rel="shortcut icon" href="../_static/logo_tiny_32.ico"/>
|
32
|
-
<link rel="top" title="bake 2.
|
32
|
+
<link rel="top" title="bake 2.14.0 documentation" href="../index.html" />
|
33
33
|
<link rel="next" title="IDE Support" href="../ide/ide_integrations.html" />
|
34
|
-
<link rel="prev" title="
|
34
|
+
<link rel="prev" title="Adapt configs" href="../syntax/adapt_configs.html" />
|
35
35
|
<meta charset='utf-8'>
|
36
36
|
<meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
|
37
37
|
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'>
|
@@ -120,7 +120,7 @@
|
|
120
120
|
|
121
121
|
|
122
122
|
<li>
|
123
|
-
<a href="../syntax/
|
123
|
+
<a href="../syntax/adapt_configs.html" title="Previous Chapter: Adapt configs"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">« Adapt configs</span>
|
124
124
|
</a>
|
125
125
|
</li>
|
126
126
|
<li>
|
@@ -276,7 +276,7 @@ Example:</p>
|
|
276
276
|
|
277
277
|
</p>
|
278
278
|
<p>
|
279
|
-
© Copyright
|
279
|
+
© Copyright 2016, E.S.R.Labs AG.<br/>
|
280
280
|
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.1.<br/>
|
281
281
|
</p>
|
282
282
|
</div>
|