bake-toolkit 2.14.0 → 2.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/bakery +3 -1
- data/documentation/_build/html/_sources/changelog.txt +8 -1
- data/documentation/_build/html/_sources/index.txt +1 -1
- data/documentation/_build/html/_sources/syntax/derive_configs.txt +13 -0
- data/documentation/_build/html/_static/syntax.html +5 -5
- data/documentation/_build/html/changelog.html +13 -4
- data/documentation/_build/html/commandline/commandline.html +3 -3
- data/documentation/_build/html/concepts/build_hierarchy.html +3 -3
- data/documentation/_build/html/concepts/concepts.html +3 -3
- data/documentation/_build/html/concepts/the_main_project.html +3 -3
- data/documentation/_build/html/concepts/the_project_meta_file.html +3 -3
- data/documentation/_build/html/genindex.html +3 -3
- data/documentation/_build/html/ide/eclipse/eclipse.html +3 -3
- data/documentation/_build/html/ide/eclipse/how_to_convert_existing_cdt_workspace.html +3 -3
- data/documentation/_build/html/ide/eclipse/how_to_create_a_new_project_in_eclipse.html +3 -3
- data/documentation/_build/html/ide/eclipse/how_to_create_a_workspace_in_eclipse.html +3 -3
- data/documentation/_build/html/ide/eclipse/how_to_install_eclipse_plugin.html +3 -3
- data/documentation/_build/html/ide/eclipse/how_to_use_bake_in_eclipse.html +3 -3
- data/documentation/_build/html/ide/ide_integrations.html +3 -3
- data/documentation/_build/html/ide/vs/how_to_create_vs_projects.html +3 -3
- data/documentation/_build/html/ide/vs/how_to_debug_in_vs.html +3 -3
- data/documentation/_build/html/ide/vs/how_to_used_bake_in_vs.html +3 -3
- data/documentation/_build/html/ide/vs/vs.html +3 -3
- data/documentation/_build/html/ide/vs/vs_install.html +3 -3
- data/documentation/_build/html/index.html +6 -6
- data/documentation/_build/html/install/install_bake.html +3 -3
- data/documentation/_build/html/internal.html +3 -3
- data/documentation/_build/html/known_issues.html +3 -3
- data/documentation/_build/html/license.html +3 -3
- data/documentation/_build/html/performance/performance.html +3 -3
- data/documentation/_build/html/quickstart/quickstart.html +3 -3
- data/documentation/_build/html/search.html +3 -3
- data/documentation/_build/html/searchindex.js +1 -1
- data/documentation/_build/html/syntax/adapt_configs.html +3 -3
- data/documentation/_build/html/syntax/derive_configs.html +14 -3
- data/documentation/_build/html/syntax/project_meta_syntax.html +8 -8
- data/documentation/_build/html/syntax/syntax.html +4 -3
- data/documentation/_build/html/syntax/variable_substitutions.html +3 -3
- data/documentation/_build/html/tips_and_tricks/how_to_use_bake_with_cygwin.html +3 -3
- data/documentation/_build/html/tips_and_tricks/static_code_analysis.html +3 -3
- data/documentation/_build/html/tips_and_tricks/the_bakery.html +3 -3
- data/documentation/_build/html/tips_and_tricks/the_clang.html +3 -3
- data/documentation/_build/html/tips_and_tricks/tips_and_tricks.html +3 -3
- data/documentation/_build/html/why_bake/why_bake.html +5 -5
- data/lib/bake/config/loader.rb +6 -2
- data/lib/bake/mergeConfig.rb +9 -9
- data/lib/bake/model/metamodel.rb +2 -2
- data/lib/bake/options/options.rb +1 -1
- data/lib/bake/subst.rb +6 -5
- data/lib/bakery/options/options.rb +2 -2
- data/lib/blocks/block.rb +12 -7
- data/lib/blocks/compile.rb +12 -3
- data/lib/blocks/library.rb +17 -10
- data/lib/common/options/parser.rb +29 -7
- data/lib/common/version.rb +1 -1
- data/lib/vs/options.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5abfe2aa916a877253287f7b95bf8cf73b44ed3b
|
4
|
+
data.tar.gz: 42416bd1276814bba884741fde4c8aee8afcd392
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d4b55cdb81291582a838a10af563a149e817abeef5c60564220370ed07f0b4c8cc4a09b8ca794ae770c085f878381433284f81f45367ef1ce382d350d5fae0f
|
7
|
+
data.tar.gz: 999aab9ae0100d796c48080ac289f4524616426c57541e71029e39c199762babe15c08f88e99795d5447e32ccb97b62782c7acc80237aa93c45bf18bc97d7647
|
data/bin/bakery
CHANGED
@@ -13,6 +13,7 @@ STDOUT.sync = true
|
|
13
13
|
STDERR.sync = true
|
14
14
|
|
15
15
|
require 'bake/toolchain/colorizing_formatter'
|
16
|
+
require 'bake/options/options'
|
16
17
|
require 'tocxx'
|
17
18
|
require "bakery/model/loader"
|
18
19
|
require "bakery/options/options"
|
@@ -24,7 +25,8 @@ require 'common/cleanup'
|
|
24
25
|
module Bake
|
25
26
|
|
26
27
|
@options = BakeryOptions.new(ARGV)
|
27
|
-
|
28
|
+
bakeOptions = Options.new([])
|
29
|
+
@options.parse_options(bakeOptions)
|
28
30
|
|
29
31
|
env = nil
|
30
32
|
begin
|
@@ -1,7 +1,14 @@
|
|
1
1
|
Changelog
|
2
2
|
=========
|
3
3
|
|
4
|
-
|
4
|
+
February 11, 2016 - bake-toolkit 2.15.0
|
5
|
+
* Added: multiple inheritance for configs
|
6
|
+
* Added: ArtifactName can be specified for libraries
|
7
|
+
* Added: Merged configs are printed out when running bake with --debug
|
8
|
+
* Added: info output if "path magic" hides local pathes for IncludeDir
|
9
|
+
* Bugfix: fixed passing arguments from bakery to bake
|
10
|
+
|
11
|
+
January 14, 2016 - bake-toolkit 2.14.0
|
5
12
|
* Added: possibility to change configs via command line, e.g. changing compiler, see "adapt" docu page
|
6
13
|
* Changed: extending configs in a Project.meta file made more generic, see "derive" docu page
|
7
14
|
* 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.
|
@@ -79,3 +79,16 @@ results implicitly in:
|
|
79
79
|
}
|
80
80
|
|
81
81
|
|
82
|
+
Multiple inheritance
|
83
|
+
********************
|
84
|
+
|
85
|
+
It is possible to derive from several projects:
|
86
|
+
|
87
|
+
.. code-block:: text
|
88
|
+
|
89
|
+
ExecutableConfig A
|
90
|
+
LibraryConfig B
|
91
|
+
ExecutableConfig C, extends: "A, B"
|
92
|
+
|
93
|
+
"extends" defines a comma separated list. The merge will be performed with all parent configs.
|
94
|
+
|
@@ -65,7 +65,7 @@ z-index: 100;
|
|
65
65
|
<span class="mycomment"># 0..n configs</span><br>
|
66
66
|
<span class="showRadio" onMouseover="showExecutableConfig()" onMouseout="notip()" id="executableConfig">ExecutableConfig</span> |
|
67
67
|
<span class="hideRadio" onMouseover="showLibraryConfig()" onMouseout="notip()" id="libraryConfig">LibraryConfig</span> |
|
68
|
-
<span class="hideRadio" onMouseover="showCustomConfig()" onMouseout="notip()" id="customConfig">CustomConfig</span> <name>, <span class="help" onMouseover="showExtends()" onMouseout="notip()">extends</span>: <parent> {<br><br>
|
68
|
+
<span class="hideRadio" onMouseover="showCustomConfig()" onMouseout="notip()" id="customConfig">CustomConfig</span> <name>, <span class="help" onMouseover="showExtends()" onMouseout="notip()">extends</span>: <parent(s)> {<br><br>
|
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>
|
@@ -153,14 +153,14 @@ z-index: 100;
|
|
153
153
|
<span class="help" onMouseover="showFilesDefine()" onMouseout="notip()">Define</span> <define><br>
|
154
154
|
}<br>
|
155
155
|
<span class="help" onMouseover="showExcludeFiles()" onMouseout="notip()">ExcludeFiles</span> <pattern><br>
|
156
|
-
|
156
|
+
<span class="help" onMouseover="showArtifactName()" onMouseout="notip()">ArtifactName</span> <name><br>
|
157
157
|
</span><br></span>
|
158
158
|
|
159
159
|
<span id="exe_part"><span class="show" style="background-color:#EEEEEE;">
|
160
160
|
<span class="mycomment"># Valid for ExecutableConfig</span><br><br>
|
161
161
|
<span class="help" onMouseover="showLinkerScript()" onMouseout="notip()">LinkerScript</span> <script><br>
|
162
162
|
<span class="help" onMouseover="showMapFile()" onMouseout="notip()">MapFile</span> <name><br>
|
163
|
-
|
163
|
+
</span><br></span>
|
164
164
|
|
165
165
|
<span id="custom_part" class="hide"><span style="background-color:#EEEEEE;" class="show">
|
166
166
|
<span class="mycomment"># Valid for CustomConfig</span><br><br>
|
@@ -423,7 +423,7 @@ function showOutputDir() {
|
|
423
423
|
}
|
424
424
|
|
425
425
|
function showExtends() {
|
426
|
-
ddrivetip("extends", "No","0..1","-","Inherit settings from
|
426
|
+
ddrivetip("extends", "No","0..1","-","Inherit settings from parent config(s).<br>For more information see docu page 'Derive configs'.")
|
427
427
|
}
|
428
428
|
|
429
429
|
function showFiles() {
|
@@ -509,7 +509,7 @@ function showMapFile() {
|
|
509
509
|
function showArtifactName() {
|
510
510
|
str = 'The artifact name inclusive file ending.<br>'+
|
511
511
|
'The artifact will be placed in the output directory.'
|
512
|
-
ddrivetip("ArtifactName","No","0..1","
|
512
|
+
ddrivetip("ArtifactName","No","0..1","Executable: project name + toolchain dependent file ending. Library: 'lib' + project name + '.a'",str)
|
513
513
|
}
|
514
514
|
|
515
515
|
function showMakefileCustom() {
|
@@ -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.15.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.15.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.15.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,7 +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>
|
143
|
+
<dt>February 11, 2016 - bake-toolkit 2.15.0</dt>
|
144
|
+
<dd><ul class="first last simple">
|
145
|
+
<li>Added: multiple inheritance for configs</li>
|
146
|
+
<li>Added: ArtifactName can be specified for libraries</li>
|
147
|
+
<li>Added: Merged configs are printed out when running bake with –debug</li>
|
148
|
+
<li>Added: info output if “path magic” hides local pathes for IncludeDir</li>
|
149
|
+
<li>Bugfix: fixed passing arguments from bakery to bake</li>
|
150
|
+
</ul>
|
151
|
+
</dd>
|
152
|
+
<dt>January 14, 2016 - bake-toolkit 2.14.0</dt>
|
144
153
|
<dd><ul class="first last simple">
|
145
154
|
<li>Added: possibility to change configs via command line, e.g. changing compiler, see “adapt” docu page</li>
|
146
155
|
<li>Changed: extending configs in a Project.meta file made more generic, see “derive” docu page</li>
|
@@ -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.15.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.15.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.15.0 documentation" href="../index.html" />
|
33
33
|
<link rel="next" title="IDE Support" href="../ide/ide_integrations.html" />
|
34
34
|
<link rel="prev" title="Adapt configs" href="../syntax/adapt_configs.html" />
|
35
35
|
<meta charset='utf-8'>
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<head>
|
6
6
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
7
7
|
|
8
|
-
<title>The build hierarchy — bake 2.
|
8
|
+
<title>The build hierarchy — bake 2.15.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.15.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.15.0 documentation" href="../index.html" />
|
33
33
|
<link rel="up" title="Concepts" href="concepts.html" />
|
34
34
|
<link rel="next" title="Syntax" href="../syntax/syntax.html" />
|
35
35
|
<link rel="prev" title="The main project" href="the_main_project.html" />
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<head>
|
6
6
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
7
7
|
|
8
|
-
<title>Concepts — bake 2.
|
8
|
+
<title>Concepts — bake 2.15.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.15.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.15.0 documentation" href="../index.html" />
|
33
33
|
<link rel="next" title="The Project.meta file" href="the_project_meta_file.html" />
|
34
34
|
<link rel="prev" title="Quickstart" href="../quickstart/quickstart.html" />
|
35
35
|
<meta charset='utf-8'>
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<head>
|
6
6
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
7
7
|
|
8
|
-
<title>The main project — bake 2.
|
8
|
+
<title>The main project — bake 2.15.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.15.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.15.0 documentation" href="../index.html" />
|
33
33
|
<link rel="up" title="Concepts" href="concepts.html" />
|
34
34
|
<link rel="next" title="The build hierarchy" href="build_hierarchy.html" />
|
35
35
|
<link rel="prev" title="The Project.meta file" href="the_project_meta_file.html" />
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<head>
|
6
6
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
7
7
|
|
8
|
-
<title>The Project.meta file — bake 2.
|
8
|
+
<title>The Project.meta file — bake 2.15.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.15.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.15.0 documentation" href="../index.html" />
|
33
33
|
<link rel="up" title="Concepts" href="concepts.html" />
|
34
34
|
<link rel="next" title="The main project" href="the_main_project.html" />
|
35
35
|
<link rel="prev" title="Concepts" href="concepts.html" />
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<head>
|
7
7
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
8
8
|
|
9
|
-
<title>Index — bake 2.
|
9
|
+
<title>Index — bake 2.15.0 documentation</title>
|
10
10
|
|
11
11
|
<link rel="stylesheet" href="_static/basic.css" type="text/css" />
|
12
12
|
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
|
@@ -16,7 +16,7 @@
|
|
16
16
|
<script type="text/javascript">
|
17
17
|
var DOCUMENTATION_OPTIONS = {
|
18
18
|
URL_ROOT: './',
|
19
|
-
VERSION: '2.
|
19
|
+
VERSION: '2.15.0',
|
20
20
|
COLLAPSE_INDEX: false,
|
21
21
|
FILE_SUFFIX: '.html',
|
22
22
|
HAS_SOURCE: true
|
@@ -30,7 +30,7 @@
|
|
30
30
|
<script type="text/javascript" src="_static/bootstrap-3.3.4/js/bootstrap.min.js"></script>
|
31
31
|
<script type="text/javascript" src="_static/bootstrap-sphinx.js"></script>
|
32
32
|
<link rel="shortcut icon" href="_static/logo_tiny_32.ico"/>
|
33
|
-
<link rel="top" title="bake 2.
|
33
|
+
<link rel="top" title="bake 2.15.0 documentation" href="index.html" />
|
34
34
|
<meta charset='utf-8'>
|
35
35
|
<meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
|
36
36
|
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'>
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<head>
|
6
6
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
7
7
|
|
8
|
-
<title>Eclipse — bake 2.
|
8
|
+
<title>Eclipse — bake 2.15.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.15.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.15.0 documentation" href="../../index.html" />
|
33
33
|
<link rel="up" title="IDE Support" href="../ide_integrations.html" />
|
34
34
|
<link rel="next" title="How to install bake Eclipse integration" href="how_to_install_eclipse_plugin.html" />
|
35
35
|
<link rel="prev" title="IDE Support" href="../ide_integrations.html" />
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<head>
|
6
6
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
7
7
|
|
8
|
-
<title>How to convert existing CDT workspaces — bake 2.
|
8
|
+
<title>How to convert existing CDT workspaces — bake 2.15.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.15.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.15.0 documentation" href="../../index.html" />
|
33
33
|
<link rel="up" title="Eclipse" href="eclipse.html" />
|
34
34
|
<link rel="next" title="How to create a workspace in Eclipse" href="how_to_create_a_workspace_in_eclipse.html" />
|
35
35
|
<link rel="prev" title="How to use bake in Eclipse" href="how_to_use_bake_in_eclipse.html" />
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<head>
|
6
6
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
7
7
|
|
8
|
-
<title>How to create a new project in Eclipse — bake 2.
|
8
|
+
<title>How to create a new project in Eclipse — bake 2.15.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.15.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.15.0 documentation" href="../../index.html" />
|
33
33
|
<link rel="up" title="Eclipse" href="eclipse.html" />
|
34
34
|
<link rel="next" title="Visual Studio" href="../vs/vs.html" />
|
35
35
|
<link rel="prev" title="How to create a workspace in Eclipse" href="how_to_create_a_workspace_in_eclipse.html" />
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<head>
|
6
6
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
7
7
|
|
8
|
-
<title>How to create a workspace in Eclipse — bake 2.
|
8
|
+
<title>How to create a workspace in Eclipse — bake 2.15.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.15.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.15.0 documentation" href="../../index.html" />
|
33
33
|
<link rel="up" title="Eclipse" href="eclipse.html" />
|
34
34
|
<link rel="next" title="How to create a new project in Eclipse" href="how_to_create_a_new_project_in_eclipse.html" />
|
35
35
|
<link rel="prev" title="How to convert existing CDT workspaces" href="how_to_convert_existing_cdt_workspace.html" />
|
@@ -5,7 +5,7 @@
|
|
5
5
|
<head>
|
6
6
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
7
7
|
|
8
|
-
<title>How to install bake Eclipse integration — bake 2.
|
8
|
+
<title>How to install bake Eclipse integration — bake 2.15.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.15.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.15.0 documentation" href="../../index.html" />
|
33
33
|
<link rel="up" title="Eclipse" href="eclipse.html" />
|
34
34
|
<link rel="next" title="How to use bake in Eclipse" href="how_to_use_bake_in_eclipse.html" />
|
35
35
|
<link rel="prev" title="Eclipse" href="eclipse.html" />
|