Mxx_ru 1.6.13 → 1.6.14

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8c2b4e6fc5bc2e37bf49d1ddc64e0d3cc9960dd0
4
- data.tar.gz: 7c966d4f38376eb214b0c2cfc16ae3134a9177a8
3
+ metadata.gz: f0913459ee2d57d180f4ad35d293b37cc6c109c7
4
+ data.tar.gz: 154543abe2eb0a948f69cd83bb89e1394e6cad28
5
5
  SHA512:
6
- metadata.gz: 1758dddeefac16dfd3a9d23c3cf42360f19486ae43d5770a6760c00f2d209c89ea5d5132d4c0af12651e043a0f2aa6cc9adc6c4abcc126e177ca3b1540f33489
7
- data.tar.gz: 9a076f7b445fe98ce2ecfa5cb47a330dfb5fa9e2dc2553e8441bb9d5a2902934e01c827c7b978a1b42d6b3dd016e04e12c2023bd3577f6784c5f0b26b2780d2f
6
+ metadata.gz: a4909f10582c0d97afed0247cee6f5ee6b655016adbad5c8fb30878de04b908f2abdc214bfffadda9c05e9d8bbd499f2a7235a52af403efeecd1009431f71d1d
7
+ data.tar.gz: 34b15a18148b1ecf962fd88056ccc4ce862805ebdd466d4e678d3bba3fa22a244fe2c50997af2e07879dfd8f1316baf73e79014a29b840714461b13dbe1e50da
data/README CHANGED
@@ -2,7 +2,7 @@ Copyright (c) 1996-2005, Yauheni Akhotnikau
2
2
 
3
3
  Copyright (c) 2004-2006, JSC Intervale
4
4
 
5
- Copyright (c) 2006-2016, The Mxx_ru Project
5
+ Copyright (c) 2006-2017, The Mxx_ru Project
6
6
 
7
7
  All rights reserved.
8
8
 
data/bin/mxxruexternals CHANGED
@@ -173,7 +173,7 @@ if File.exists?(PREVIOUS_FILE)
173
173
 
174
174
  task mxxru_install_final_step: [PREVIOUS_FILE]
175
175
  else
176
- puts "[Note] It seems there is no changes in externals description"
176
+ puts "[Note] It seems there are no changes in externals description"
177
177
  puts "[Note] Contents of \#{PREVIOUS_FILE} won't be used"
178
178
  end
179
179
  else
@@ -0,0 +1,67 @@
1
+ #--
2
+ # Copyright (c) 1996-2004, Yauheni Akhotnikau
3
+ # Copyright (c) 2004-2006, JSC Intervale
4
+ # Copyright (c) 2006-2017, The Mxx_ru Project
5
+ # All rights reserved.
6
+ #
7
+ # Redistribution and use in source and binary forms, with or without modification,
8
+ # are permitted provided that the following conditions are met:
9
+ #
10
+ # 1. Redistributions of source code must retain the above copyright notice,
11
+ # this list of conditions and the following disclaimer.
12
+ # 2. Redistributions in binary form must reproduce the above copyright notice,
13
+ # this list of conditions and the following disclaimer in the documentation
14
+ # and/or other materials provided with the distribution.
15
+ # 3. The name of the author may not be used to endorse or promote products derived
16
+ # from this software without specific prior written permission.
17
+ #
18
+ # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
19
+ # WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
20
+ # AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
21
+ # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22
+ # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23
+ # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25
+ # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26
+ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+ #++
28
+
29
+ require 'ostruct'
30
+ require 'set'
31
+
32
+ require 'mxx_ru/cpp/target'
33
+ require 'mxx_ru/cpp/toolsets/vc8_family'
34
+
35
+ module MxxRu
36
+ module Cpp
37
+ module Toolsets
38
+
39
+ # Toolset implementation for Visual C++ 15.0 (Visual Studio 2017)
40
+ #
41
+ # Setups following tags:
42
+ # [_ver_hi_] high version number. Value: 15.
43
+ # [_ver_lo_] low version number. Value: 0.
44
+ class Vc15 < MxxRu::Cpp::Toolsets::Vc8Family
45
+ def initialize( a_name = "vc" )
46
+ super( a_name )
47
+
48
+ setup_tag( "ver_hi", "15" )
49
+ setup_tag( "ver_lo", "0" )
50
+ end
51
+
52
+ # See description at MxxRu::Cpp::Toolset#setup_mandatory_options.
53
+ def setup_mandatory_options( target )
54
+ super( target )
55
+
56
+ if CPP_STD14 == cpp_std
57
+ target.cpp_compiler_option( '/std:c++14' )
58
+ end
59
+ end
60
+ end # class Vc15
61
+
62
+ end # module Toolsets
63
+ end # module Cpp
64
+ end # module MxxRu
65
+
66
+ MxxRu::Cpp::setup_toolset( MxxRu::Cpp::Toolsets::Vc15.new )
67
+
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # Copyright (c) 1996-2004, Yauheni Akhotnikau
3
3
  # Copyright (c) 2004-2006, JSC Intervale
4
- # Copyright (c) 2006-2016, The Mxx_ru Project
4
+ # Copyright (c) 2006-2017, The Mxx_ru Project
5
5
  # All rights reserved.
6
6
  #
7
7
  # Redistribution and use in source and binary forms, with or without modification,
@@ -34,4 +34,4 @@
34
34
  #
35
35
  # puts 'Mxx_ru version is: ' + MXX_RU_VERSION
36
36
  #
37
- MXX_RU_VERSION = '1.6.13'
37
+ MXX_RU_VERSION = '1.6.14'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Mxx_ru
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.13
4
+ version: 1.6.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Mxx_ru Project
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-07 00:00:00.000000000 Z
11
+ date: 2017-03-10 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Mxx_ru is a cross-platform build tool primarily focused to C/C++ projects
14
14
  email: eao197@yahoo.com
@@ -116,6 +116,7 @@ files:
116
116
  - lib/mxx_ru/cpp/toolsets/vc11.rb
117
117
  - lib/mxx_ru/cpp/toolsets/vc12.rb
118
118
  - lib/mxx_ru/cpp/toolsets/vc14.rb
119
+ - lib/mxx_ru/cpp/toolsets/vc15.rb
119
120
  - lib/mxx_ru/cpp/toolsets/vc7.rb
120
121
  - lib/mxx_ru/cpp/toolsets/vc8.rb
121
122
  - lib/mxx_ru/cpp/toolsets/vc8_family.rb
@@ -394,7 +395,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
394
395
  version: '0'
395
396
  requirements: []
396
397
  rubyforge_project:
397
- rubygems_version: 2.5.1
398
+ rubygems_version: 2.6.8
398
399
  signing_key:
399
400
  specification_version: 4
400
401
  summary: Mxx_ru (Make++ on Ruby) is a cross-platform build tool