bake-toolkit 2.7.0 → 2.8.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/createVSProjects +5 -2
- data/doc/further/change.html +7 -0
- data/doc/index.html +1 -1
- data/lib/bake/cache.rb +4 -4
- data/lib/common/version.rb +1 -1
- data/lib/tocxx.rb +1 -1
- data/lib/vs/options.rb +2 -2
- 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: 58170fe54e9575b410a3040b0740572d01c8ed76
|
4
|
+
data.tar.gz: 7cb74c4bdaa29a7ceaaad7992d81acc1bbcbdd00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 03ff9074722334300b8d655fe0ce05d90b6ee175e0ac46245db891cff50b77abebd378a3efa8f6beeef748700d79bb46824f6b3f6387415f72333caaf997a5c3
|
7
|
+
data.tar.gz: 4034ca912a9fe8d17fd9462984fe31e7e1c26cbaf96068de3b2d15f9e5300fea88f5adfcce4620c83a98a87d0cd3f679b38c6816a4ae815ea7ac9bdcead0e3b6
|
data/bin/createVSProjects
CHANGED
@@ -29,11 +29,14 @@ end
|
|
29
29
|
@options = VsOptions.new(ARGV)
|
30
30
|
@options.parse_options
|
31
31
|
|
32
|
-
version = "
|
33
|
-
toolset = "
|
32
|
+
version = "13.00"
|
33
|
+
toolset = "v120"
|
34
34
|
if @options.version == "2010"
|
35
35
|
version = "11.00"
|
36
36
|
toolset = "v100"
|
37
|
+
elsif @options.version == "2012"
|
38
|
+
version = "12.00"
|
39
|
+
toolset = "v110"
|
37
40
|
end
|
38
41
|
|
39
42
|
|
data/doc/further/change.html
CHANGED
@@ -7,6 +7,13 @@
|
|
7
7
|
<body>
|
8
8
|
<h1>Changelog</h1>
|
9
9
|
|
10
|
+
May 19, 2015 - bake-toolkit 2.8.0<br>
|
11
|
+
<ul>
|
12
|
+
<li><b>Bugfix: when building a project with <i>-p name</i>, not only <i>name</i> was built, but all projects which start with the string <i>name</i></b>
|
13
|
+
<li><b>Added: more info why Project.meta files are reloaded</b>
|
14
|
+
<li><b>Added: <i>createVSProjects</i> can create VS2013 projects</b>
|
15
|
+
</ul>
|
16
|
+
|
10
17
|
April 22, 2015 - bake-toolkit 2.7.0<br>
|
11
18
|
<ul>
|
12
19
|
<li><b>Added: possibility to use Eclipse file ordering for compilation (<i>eclipseOrder</i> attribute for <i>DefaultToolchain</i>)</b>
|
data/doc/index.html
CHANGED
@@ -74,7 +74,7 @@ bake is used to build software <font color="#009900"><b>fast</b></font> and <fon
|
|
74
74
|
|
75
75
|
<p>
|
76
76
|
<hr>
|
77
|
-
<table width="100%" border="0"><tr><td align="left">Described bake-toolkit version: 2.
|
77
|
+
<table width="100%" border="0"><tr><td align="left">Described bake-toolkit version: 2.8.0</td><td align="right">May 19, 2015</td></tr></table>
|
78
78
|
|
79
79
|
</body>
|
80
80
|
|
data/lib/bake/cache.rb
CHANGED
@@ -55,7 +55,7 @@ module Bake
|
|
55
55
|
cache.files.each do |c|
|
56
56
|
if (not File.exists?(c))
|
57
57
|
Bake.options.nocache = true
|
58
|
-
Bake.formatter.printInfo("Info: meta file
|
58
|
+
Bake.formatter.printInfo("Info: cached meta file #{c} renamed or deleted, reloading meta information")
|
59
59
|
cache = nil
|
60
60
|
break
|
61
61
|
end
|
@@ -67,7 +67,7 @@ module Bake
|
|
67
67
|
configs.each do |config|
|
68
68
|
if not File.exists?(config.file_name)
|
69
69
|
Bake.options.nocache = true
|
70
|
-
Bake.formatter.printInfo("Info: meta file
|
70
|
+
Bake.formatter.printInfo("Info: cached meta file #{config.file_name} renamed or deleted, reloading meta information")
|
71
71
|
cache = nil
|
72
72
|
end
|
73
73
|
end
|
@@ -76,8 +76,8 @@ module Bake
|
|
76
76
|
|
77
77
|
if cache != nil
|
78
78
|
cache.files.each do |c|
|
79
|
-
if File.mtime(c) > cacheTime
|
80
|
-
Bake.formatter.printInfo("Info:
|
79
|
+
if File.mtime(c) > cacheTime + 1
|
80
|
+
Bake.formatter.printInfo("Info: #{c} has been changed, reloading meta information")
|
81
81
|
cache = nil
|
82
82
|
break
|
83
83
|
end
|
data/lib/common/version.rb
CHANGED
data/lib/tocxx.rb
CHANGED
data/lib/vs/options.rb
CHANGED
@@ -46,8 +46,8 @@ module Bake
|
|
46
46
|
end
|
47
47
|
|
48
48
|
def set_version(v)
|
49
|
-
if v != "2010" and v != "2012"
|
50
|
-
puts "Error: version must be '2010' or '
|
49
|
+
if v != "2010" and v != "2012" and v != "2013"
|
50
|
+
puts "Error: version must be '2010', '2012' or '2013'"
|
51
51
|
ExitHelper.exit(1)
|
52
52
|
end
|
53
53
|
@version = v
|
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.8.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: 2015-
|
11
|
+
date: 2015-05-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rtext
|