bake-toolkit 2.16.1 → 2.17.1

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.
Files changed (72) hide show
  1. checksums.yaml +4 -4
  2. data/documentation/_build/html/_images/debug_app.png +0 -0
  3. data/documentation/_build/html/_images/debug_debug.png +0 -0
  4. data/documentation/_build/html/_images/debug_flag.png +0 -0
  5. data/documentation/_build/html/_images/debug_map.png +0 -0
  6. data/documentation/_build/html/_images/debug_path.png +0 -0
  7. data/documentation/_build/html/_sources/changelog.txt +13 -1
  8. data/documentation/_build/html/_sources/ide/eclipse/eclipse.txt +1 -0
  9. data/documentation/_build/html/_sources/ide/eclipse/how_to_debug_in_eclipse.txt +38 -0
  10. data/documentation/_build/html/_sources/index.txt +1 -1
  11. data/documentation/_build/html/_static/debugEclipse/app.png +0 -0
  12. data/documentation/_build/html/_static/debugEclipse/debug.png +0 -0
  13. data/documentation/_build/html/_static/debugEclipse/flag.png +0 -0
  14. data/documentation/_build/html/_static/debugEclipse/map.png +0 -0
  15. data/documentation/_build/html/_static/debugEclipse/path.png +0 -0
  16. data/documentation/_build/html/_static/debug_app.png +0 -0
  17. data/documentation/_build/html/_static/debug_debug.png +0 -0
  18. data/documentation/_build/html/_static/debug_flag.png +0 -0
  19. data/documentation/_build/html/_static/debug_map.png +0 -0
  20. data/documentation/_build/html/_static/debug_path.png +0 -0
  21. data/documentation/_build/html/changelog.html +20 -4
  22. data/documentation/_build/html/commandline/commandline.html +3 -3
  23. data/documentation/_build/html/concepts/build_hierarchy.html +3 -3
  24. data/documentation/_build/html/concepts/concepts.html +3 -3
  25. data/documentation/_build/html/concepts/the_main_project.html +3 -3
  26. data/documentation/_build/html/concepts/the_project_meta_file.html +3 -3
  27. data/documentation/_build/html/genindex.html +3 -3
  28. data/documentation/_build/html/ide/eclipse/eclipse.html +4 -3
  29. data/documentation/_build/html/ide/eclipse/how_to_convert_existing_cdt_workspace.html +3 -3
  30. data/documentation/_build/html/ide/eclipse/how_to_create_a_new_project_in_eclipse.html +5 -5
  31. data/documentation/_build/html/ide/eclipse/how_to_create_a_workspace_in_eclipse.html +3 -3
  32. data/documentation/_build/html/ide/eclipse/how_to_debug_in_eclipse.html +199 -0
  33. data/documentation/_build/html/ide/eclipse/how_to_install_eclipse_plugin.html +3 -3
  34. data/documentation/_build/html/ide/eclipse/how_to_use_bake_in_eclipse.html +3 -3
  35. data/documentation/_build/html/ide/ide_integrations.html +4 -3
  36. data/documentation/_build/html/ide/vs/how_to_create_vs_projects.html +3 -3
  37. data/documentation/_build/html/ide/vs/how_to_debug_in_vs.html +3 -3
  38. data/documentation/_build/html/ide/vs/how_to_used_bake_in_vs.html +3 -3
  39. data/documentation/_build/html/ide/vs/vs.html +5 -5
  40. data/documentation/_build/html/ide/vs/vs_install.html +3 -3
  41. data/documentation/_build/html/index.html +6 -6
  42. data/documentation/_build/html/install/install_bake.html +3 -3
  43. data/documentation/_build/html/internal.html +3 -3
  44. data/documentation/_build/html/known_issues.html +3 -3
  45. data/documentation/_build/html/license.html +3 -3
  46. data/documentation/_build/html/performance/performance.html +3 -3
  47. data/documentation/_build/html/quickstart/quickstart.html +3 -3
  48. data/documentation/_build/html/search.html +3 -3
  49. data/documentation/_build/html/searchindex.js +1 -1
  50. data/documentation/_build/html/syntax/adapt_configs.html +3 -3
  51. data/documentation/_build/html/syntax/derive_configs.html +3 -3
  52. data/documentation/_build/html/syntax/project_meta_syntax.html +3 -3
  53. data/documentation/_build/html/syntax/syntax.html +3 -3
  54. data/documentation/_build/html/syntax/variable_substitutions.html +3 -3
  55. data/documentation/_build/html/tips_and_tricks/bundle.html +3 -3
  56. data/documentation/_build/html/tips_and_tricks/how_to_use_bake_with_cygwin.html +3 -3
  57. data/documentation/_build/html/tips_and_tricks/static_code_analysis.html +3 -3
  58. data/documentation/_build/html/tips_and_tricks/the_bakery.html +3 -3
  59. data/documentation/_build/html/tips_and_tricks/the_clang.html +3 -3
  60. data/documentation/_build/html/tips_and_tricks/tips_and_tricks.html +3 -3
  61. data/documentation/_build/html/why_bake/why_bake.html +5 -5
  62. data/lib/bake/config/loader.rb +60 -32
  63. data/lib/bake/libElement.rb +1 -1
  64. data/lib/bake/options/options.rb +1 -4
  65. data/lib/blocks/block.rb +5 -2
  66. data/lib/blocks/blockBase.rb +15 -1
  67. data/lib/blocks/compile.rb +3 -17
  68. data/lib/blocks/executable.rb +16 -15
  69. data/lib/common/exit_helper.rb +11 -1
  70. data/lib/common/version.rb +1 -1
  71. metadata +47 -3
  72. data/lib/bake/options/showConfigNames.rb +0 -41
@@ -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 &mdash; bake 2.16.1 documentation</title>
8
+ <title>How to create a workspace in Eclipse &mdash; bake 2.17.1 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.16.1',
18
+ VERSION: '2.17.1',
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.16.1 documentation" href="../../index.html" />
32
+ <link rel="top" title="bake 2.17.1 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" />
@@ -0,0 +1,199 @@
1
+ <!DOCTYPE html>
2
+
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml">
5
+ <head>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
+
8
+ <title>How to debug in Eclipse &mdash; bake 2.17.1 documentation</title>
9
+
10
+ <link rel="stylesheet" href="../../_static/basic.css" type="text/css" />
11
+ <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
12
+ <link rel="stylesheet" href="../../_static/bootswatch-3.3.4/sandstone/bootstrap.min.css" type="text/css" />
13
+ <link rel="stylesheet" href="../../_static/bootstrap-sphinx.css" type="text/css" />
14
+
15
+ <script type="text/javascript">
16
+ var DOCUMENTATION_OPTIONS = {
17
+ URL_ROOT: '../../',
18
+ VERSION: '2.17.1',
19
+ COLLAPSE_INDEX: false,
20
+ FILE_SUFFIX: '.html',
21
+ HAS_SOURCE: true
22
+ };
23
+ </script>
24
+ <script type="text/javascript" src="../../_static/jquery.js"></script>
25
+ <script type="text/javascript" src="../../_static/underscore.js"></script>
26
+ <script type="text/javascript" src="../../_static/doctools.js"></script>
27
+ <script type="text/javascript" src="../../_static/js/jquery-1.11.0.min.js"></script>
28
+ <script type="text/javascript" src="../../_static/js/jquery-fix.js"></script>
29
+ <script type="text/javascript" src="../../_static/bootstrap-3.3.4/js/bootstrap.min.js"></script>
30
+ <script type="text/javascript" src="../../_static/bootstrap-sphinx.js"></script>
31
+ <link rel="shortcut icon" href="../../_static/logo_tiny_32.ico"/>
32
+ <link rel="top" title="bake 2.17.1 documentation" href="../../index.html" />
33
+ <link rel="up" title="Eclipse" href="eclipse.html" />
34
+ <link rel="next" title="Visual Studio" href="../vs/vs.html" />
35
+ <link rel="prev" title="How to create a new project in Eclipse" href="how_to_create_a_new_project_in_eclipse.html" />
36
+ <meta charset='utf-8'>
37
+ <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
38
+ <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'>
39
+ <meta name="apple-mobile-web-app-capable" content="yes">
40
+
41
+ </head>
42
+ <body role="document">
43
+
44
+ <div id="navbar" class="navbar navbar-default navbar-fixed-top">
45
+ <div class="container">
46
+ <div class="navbar-header">
47
+ <!-- .btn-navbar is used as the toggle for collapsed navbar content -->
48
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-collapse">
49
+ <span class="icon-bar"></span>
50
+ <span class="icon-bar"></span>
51
+ <span class="icon-bar"></span>
52
+ </button>
53
+ <a class="navbar-brand" href="../../index.html"><img src="../../_static/logo_conformant_48.png">
54
+ </a>
55
+ <span class="navbar-text navbar-version pull-left"><b></b></span>
56
+ </div>
57
+
58
+ <div class="collapse navbar-collapse nav-collapse">
59
+ <ul class="nav navbar-nav">
60
+
61
+
62
+ <li class="dropdown globaltoc-container">
63
+ <a role="button"
64
+ id="dLabelGlobalToc"
65
+ data-toggle="dropdown"
66
+ data-target="#"
67
+ href="../../index.html">Section <b class="caret"></b></a>
68
+ <ul class="dropdown-menu globaltoc"
69
+ role="menu"
70
+ aria-labelledby="dLabelGlobalToc"><ul class="current">
71
+ <li class="toctree-l1"><a class="reference internal" href="../../why_bake/why_bake.html">Why you should use bake</a></li>
72
+ <li class="toctree-l1"><a class="reference internal" href="../../install/install_bake.html">Install bake</a></li>
73
+ <li class="toctree-l1"><a class="reference internal" href="../../quickstart/quickstart.html">Quickstart</a></li>
74
+ <li class="toctree-l1"><a class="reference internal" href="../../concepts/concepts.html">Concepts</a></li>
75
+ <li class="toctree-l1"><a class="reference internal" href="../../syntax/syntax.html">Syntax</a></li>
76
+ <li class="toctree-l1"><a class="reference internal" href="../../commandline/commandline.html">Commandline</a></li>
77
+ <li class="toctree-l1 current"><a class="reference internal" href="../ide_integrations.html">IDE Support</a></li>
78
+ <li class="toctree-l1"><a class="reference internal" href="../../tips_and_tricks/tips_and_tricks.html">Tips and Tricks</a></li>
79
+ <li class="toctree-l1"><a class="reference internal" href="../../performance/performance.html">Performance</a></li>
80
+ <li class="toctree-l1"><a class="reference internal" href="../../known_issues.html">Known Issues</a></li>
81
+ <li class="toctree-l1"><a class="reference internal" href="../../changelog.html">Changelog</a></li>
82
+ <li class="toctree-l1"><a class="reference internal" href="../../license.html">License</a></li>
83
+ </ul>
84
+ <ul>
85
+ <li class="toctree-l1"><a class="reference internal" href="../../internal.html">Internal developing notes</a></li>
86
+ </ul>
87
+ </ul>
88
+ </li>
89
+
90
+ <li class="dropdown">
91
+ <a role="button"
92
+ id="dLabelLocalToc"
93
+ data-toggle="dropdown"
94
+ data-target="#"
95
+ href="#">SubSections <b class="caret"></b></a>
96
+ <ul class="dropdown-menu localtoc"
97
+ role="menu"
98
+ aria-labelledby="dLabelLocalToc"><ul>
99
+ <li><a class="reference internal" href="#">How to debug in Eclipse</a><ul>
100
+ <li><a class="reference internal" href="#compile-with-debug-information">1. Compile with debug information</a></li>
101
+ <li><a class="reference internal" href="#create-a-debug-configuration-for-a-c-application">2. Create a debug configuration for a C++ application</a></li>
102
+ <li><a class="reference internal" href="#add-path-mapping">3. Add path mapping</a></li>
103
+ <li><a class="reference internal" href="#now-you-can-debug-your-code">4. Now you can debug your code</a></li>
104
+ </ul>
105
+ </li>
106
+ </ul>
107
+ </ul>
108
+ </li>
109
+
110
+
111
+
112
+
113
+
114
+ <li>
115
+ <a href="how_to_create_a_new_project_in_eclipse.html" title="Previous Chapter: How to create a new project in Eclipse"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">&laquo; How to create...</span>
116
+ </a>
117
+ </li>
118
+ <li>
119
+ <a href="../vs/vs.html" title="Next Chapter: Visual Studio"><span class="glyphicon glyphicon-chevron-right visible-sm"></span><span class="hidden-sm hidden-tablet">Visual Studio &raquo;</span>
120
+ </a>
121
+ </li>
122
+
123
+
124
+
125
+
126
+
127
+ </ul>
128
+
129
+
130
+
131
+ <form class="navbar-form navbar-right" action="../../search.html" method="get">
132
+ <div class="form-group">
133
+ <input type="text" name="q" class="form-control" placeholder="Search" />
134
+ </div>
135
+ <input type="hidden" name="check_keywords" value="yes" />
136
+ <input type="hidden" name="area" value="default" />
137
+ </form>
138
+
139
+ </div>
140
+ </div>
141
+ </div>
142
+
143
+ <div class="container">
144
+ <div class="row">
145
+ <div class="col-md-12">
146
+
147
+ <div class="section" id="how-to-debug-in-eclipse">
148
+ <h1>How to debug in Eclipse<a class="headerlink" href="#how-to-debug-in-eclipse" title="Permalink to this headline">¶</a></h1>
149
+ <p>The following example is made with Eclipse Mars, <strong>Cygwin</strong>, <strong>gcc</strong> and <strong>gdb</strong>. However, the same applies to all other compilers and
150
+ environments, too.</p>
151
+ <div class="section" id="compile-with-debug-information">
152
+ <h2>1. Compile with debug information<a class="headerlink" href="#compile-with-debug-information" title="Permalink to this headline">¶</a></h2>
153
+ <p>Don&#8217;t forget this. Otherwise sources symbols cannot not mapped.</p>
154
+ <img alt="../../_images/debug_flag.png" src="../../_images/debug_flag.png" />
155
+ </div>
156
+ <div class="section" id="create-a-debug-configuration-for-a-c-application">
157
+ <h2>2. Create a debug configuration for a C++ application<a class="headerlink" href="#create-a-debug-configuration-for-a-c-application" title="Permalink to this headline">¶</a></h2>
158
+ <p>This options can be found under Run-&gt;Debug Configurations... or click on the arrow next to the green spider.</p>
159
+ <img alt="../../_images/debug_app.png" src="../../_images/debug_app.png" />
160
+ <div class="line-block">
161
+ <div class="line">Choose a suitable name and the executable.</div>
162
+ </div>
163
+ </div>
164
+ <div class="section" id="add-path-mapping">
165
+ <h2>3. Add path mapping<a class="headerlink" href="#add-path-mapping" title="Permalink to this headline">¶</a></h2>
166
+ <img alt="../../_images/debug_path.png" src="../../_images/debug_path.png" />
167
+ <img alt="../../_images/debug_map.png" src="../../_images/debug_map.png" />
168
+ <div class="line-block">
169
+ <div class="line">Note that this must be done if the compiler uses different paths than Eclipse. In this example I have used gcc under Cygwin,</div>
170
+ <div class="line">which typically uses &#8220;/cygdrive/c&#8221; for &#8220;c:\&#8221;. I always mount &#8220;c:\&#8221; to &#8220;/c&#8221;.</div>
171
+ <div class="line"><br /></div>
172
+ <div class="line">Also note, that my Eclipse changes &#8220;/c&#8221; to &#8220;\c&#8221; in the dialog box automatically, but it works nevertheless.</div>
173
+ </div>
174
+ </div>
175
+ <div class="section" id="now-you-can-debug-your-code">
176
+ <h2>4. Now you can debug your code<a class="headerlink" href="#now-you-can-debug-your-code" title="Permalink to this headline">¶</a></h2>
177
+ <img alt="../../_images/debug_debug.png" src="../../_images/debug_debug.png" />
178
+ </div>
179
+ </div>
180
+
181
+
182
+ </div>
183
+
184
+ </div>
185
+ </div>
186
+ <footer class="footer">
187
+ <div class="container">
188
+ <p class="pull-right">
189
+ <a href="#">Back to top</a>
190
+
191
+ </p>
192
+ <p>
193
+ &copy; Copyright 2016, E.S.R.Labs AG.<br/>
194
+ Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.1.<br/>
195
+ </p>
196
+ </div>
197
+ </footer>
198
+ </body>
199
+ </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 &mdash; bake 2.16.1 documentation</title>
8
+ <title>How to install bake Eclipse integration &mdash; bake 2.17.1 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.16.1',
18
+ VERSION: '2.17.1',
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.16.1 documentation" href="../../index.html" />
32
+ <link rel="top" title="bake 2.17.1 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" />
@@ -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 use bake in Eclipse &mdash; bake 2.16.1 documentation</title>
8
+ <title>How to use bake in Eclipse &mdash; bake 2.17.1 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.16.1',
18
+ VERSION: '2.17.1',
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.16.1 documentation" href="../../index.html" />
32
+ <link rel="top" title="bake 2.17.1 documentation" href="../../index.html" />
33
33
  <link rel="up" title="Eclipse" href="eclipse.html" />
34
34
  <link rel="next" title="How to convert existing CDT workspaces" href="how_to_convert_existing_cdt_workspace.html" />
35
35
  <link rel="prev" title="How to install bake Eclipse integration" href="how_to_install_eclipse_plugin.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>IDE Support &mdash; bake 2.16.1 documentation</title>
8
+ <title>IDE Support &mdash; bake 2.17.1 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.16.1',
18
+ VERSION: '2.17.1',
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.16.1 documentation" href="../index.html" />
32
+ <link rel="top" title="bake 2.17.1 documentation" href="../index.html" />
33
33
  <link rel="next" title="Eclipse" href="eclipse/eclipse.html" />
34
34
  <link rel="prev" title="Commandline" href="../commandline/commandline.html" />
35
35
  <meta charset='utf-8'>
@@ -147,6 +147,7 @@
147
147
  <li class="toctree-l2"><a class="reference internal" href="eclipse/how_to_convert_existing_cdt_workspace.html">How to convert existing CDT workspaces</a></li>
148
148
  <li class="toctree-l2"><a class="reference internal" href="eclipse/how_to_create_a_workspace_in_eclipse.html">How to create a workspace in Eclipse</a></li>
149
149
  <li class="toctree-l2"><a class="reference internal" href="eclipse/how_to_create_a_new_project_in_eclipse.html">How to create a new project in Eclipse</a></li>
150
+ <li class="toctree-l2"><a class="reference internal" href="eclipse/how_to_debug_in_eclipse.html">How to debug in Eclipse</a></li>
150
151
  <li class="toctree-l2"><a class="reference internal" href="eclipse/eclipse.html#syntax-highlighting">Syntax highlighting</a></li>
151
152
  <li class="toctree-l2"><a class="reference internal" href="eclipse/eclipse.html#key-bindings">Key bindings</a></li>
152
153
  </ul>
@@ -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 VS-Projects using bake &mdash; bake 2.16.1 documentation</title>
8
+ <title>How to create VS-Projects using bake &mdash; bake 2.17.1 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.16.1',
18
+ VERSION: '2.17.1',
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.16.1 documentation" href="../../index.html" />
32
+ <link rel="top" title="bake 2.17.1 documentation" href="../../index.html" />
33
33
  <link rel="up" title="Visual Studio" href="vs.html" />
34
34
  <link rel="next" title="How to Debug in Visual Studio" href="how_to_debug_in_vs.html" />
35
35
  <link rel="prev" title="How to use bake in Visual Studio" href="how_to_used_bake_in_vs.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 Debug in Visual Studio &mdash; bake 2.16.1 documentation</title>
8
+ <title>How to Debug in Visual Studio &mdash; bake 2.17.1 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.16.1',
18
+ VERSION: '2.17.1',
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.16.1 documentation" href="../../index.html" />
32
+ <link rel="top" title="bake 2.17.1 documentation" href="../../index.html" />
33
33
  <link rel="up" title="Visual Studio" href="vs.html" />
34
34
  <link rel="next" title="Tips and Tricks" href="../../tips_and_tricks/tips_and_tricks.html" />
35
35
  <link rel="prev" title="How to create VS-Projects using bake" href="how_to_create_vs_projects.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 use bake in Visual Studio &mdash; bake 2.16.1 documentation</title>
8
+ <title>How to use bake in Visual Studio &mdash; bake 2.17.1 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.16.1',
18
+ VERSION: '2.17.1',
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.16.1 documentation" href="../../index.html" />
32
+ <link rel="top" title="bake 2.17.1 documentation" href="../../index.html" />
33
33
  <link rel="up" title="Visual Studio" href="vs.html" />
34
34
  <link rel="next" title="How to create VS-Projects using bake" href="how_to_create_vs_projects.html" />
35
35
  <link rel="prev" title="How to install bake Visual Studio integration" href="vs_install.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>Visual Studio &mdash; bake 2.16.1 documentation</title>
8
+ <title>Visual Studio &mdash; bake 2.17.1 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.16.1',
18
+ VERSION: '2.17.1',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true
@@ -29,10 +29,10 @@
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.16.1 documentation" href="../../index.html" />
32
+ <link rel="top" title="bake 2.17.1 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 Visual Studio integration" href="vs_install.html" />
35
- <link rel="prev" title="How to create a new project in Eclipse" href="../eclipse/how_to_create_a_new_project_in_eclipse.html" />
35
+ <link rel="prev" title="How to debug in Eclipse" href="../eclipse/how_to_debug_in_eclipse.html" />
36
36
  <meta charset='utf-8'>
37
37
  <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
38
38
  <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'>
@@ -106,7 +106,7 @@
106
106
 
107
107
 
108
108
  <li>
109
- <a href="../eclipse/how_to_create_a_new_project_in_eclipse.html" title="Previous Chapter: How to create a new project in Eclipse"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">&laquo; How to create...</span>
109
+ <a href="../eclipse/how_to_debug_in_eclipse.html" title="Previous Chapter: How to debug in Eclipse"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">&laquo; How to debug ...</span>
110
110
  </a>
111
111
  </li>
112
112
  <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>How to install bake Visual Studio integration &mdash; bake 2.16.1 documentation</title>
8
+ <title>How to install bake Visual Studio integration &mdash; bake 2.17.1 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.16.1',
18
+ VERSION: '2.17.1',
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.16.1 documentation" href="../../index.html" />
32
+ <link rel="top" title="bake 2.17.1 documentation" href="../../index.html" />
33
33
  <link rel="up" title="Visual Studio" href="vs.html" />
34
34
  <link rel="next" title="How to use bake in Visual Studio" href="how_to_used_bake_in_vs.html" />
35
35
  <link rel="prev" title="Visual Studio" href="vs.html" />