bake-toolkit 2.17.4 → 2.18.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/documentation/_build/html/_sources/changelog.txt +14 -0
- data/documentation/_build/html/_sources/concepts/build_hierarchy.txt +1 -1
- data/documentation/_build/html/_sources/concepts/concepts.txt +1 -0
- data/documentation/_build/html/_sources/concepts/link_order.txt +91 -0
- data/documentation/_build/html/_sources/index.txt +1 -1
- data/documentation/_build/html/changelog.html +31 -3
- data/documentation/_build/html/commandline/commandline.html +3 -3
- data/documentation/_build/html/concepts/build_hierarchy.html +6 -6
- data/documentation/_build/html/concepts/concepts.html +8 -3
- data/documentation/_build/html/concepts/link_order.html +246 -0
- 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_debug_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 +7 -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 +3 -3
- data/documentation/_build/html/syntax/project_meta_syntax.html +3 -3
- data/documentation/_build/html/syntax/syntax.html +5 -5
- data/documentation/_build/html/syntax/variable_substitutions.html +3 -3
- data/documentation/_build/html/tips_and_tricks/bundle.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/libElement.rb +77 -38
- data/lib/bake/mergeConfig.rb +31 -27
- data/lib/bake/options/options.rb +36 -33
- data/lib/bake/options/usage.rb +5 -3
- data/lib/common/version.rb +1 -1
- metadata +4 -2
data/lib/bake/options/usage.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
module Bake
|
|
2
2
|
|
|
3
3
|
class Usage
|
|
4
|
-
|
|
4
|
+
|
|
5
5
|
def self.show
|
|
6
6
|
puts "\nUsage: bake [options]"
|
|
7
7
|
puts " [-b] <name> Config name of main project"
|
|
@@ -43,14 +43,16 @@ module Bake
|
|
|
43
43
|
puts " --bundle <dir> Bundles the output (experimental, description will follow)"
|
|
44
44
|
puts " --writeCC2J <name> Writes compiler command into a json file (experimental!)"
|
|
45
45
|
puts " --create exe|lib|custom Creates a project with exe, lib or custom template"
|
|
46
|
+
puts " --link-2-17 Using link order of libraries which was used until bake 2.17"
|
|
47
|
+
|
|
46
48
|
puts ""
|
|
47
49
|
puts " --version Print version."
|
|
48
50
|
puts " --doc Open documentation in browser"
|
|
49
51
|
puts " -h, --help Print this help."
|
|
50
52
|
puts " --license Print the license."
|
|
51
53
|
puts ""
|
|
52
|
-
puts " --debug Print out backtraces in some cases - used only for debugging bake."
|
|
53
|
-
ExitHelper.exit(0)
|
|
54
|
+
puts " --debug Print out backtraces in some cases - used only for debugging bake."
|
|
55
|
+
ExitHelper.exit(0)
|
|
54
56
|
end
|
|
55
57
|
|
|
56
58
|
end
|
data/lib/common/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bake-toolkit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.18.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexander Schaal
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-06-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rtext
|
|
@@ -232,6 +232,7 @@ files:
|
|
|
232
232
|
- documentation/_build/html/_sources/commandline/commandline.txt
|
|
233
233
|
- documentation/_build/html/_sources/concepts/build_hierarchy.txt
|
|
234
234
|
- documentation/_build/html/_sources/concepts/concepts.txt
|
|
235
|
+
- documentation/_build/html/_sources/concepts/link_order.txt
|
|
235
236
|
- documentation/_build/html/_sources/concepts/the_main_project.txt
|
|
236
237
|
- documentation/_build/html/_sources/concepts/the_project_meta_file.txt
|
|
237
238
|
- documentation/_build/html/_sources/ide/eclipse/eclipse.txt
|
|
@@ -436,6 +437,7 @@ files:
|
|
|
436
437
|
- documentation/_build/html/commandline/commandline.html
|
|
437
438
|
- documentation/_build/html/concepts/build_hierarchy.html
|
|
438
439
|
- documentation/_build/html/concepts/concepts.html
|
|
440
|
+
- documentation/_build/html/concepts/link_order.html
|
|
439
441
|
- documentation/_build/html/concepts/the_main_project.html
|
|
440
442
|
- documentation/_build/html/concepts/the_project_meta_file.html
|
|
441
443
|
- documentation/_build/html/genindex.html
|