Mxx_ru 1.6.2 → 1.6.3
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 +7 -0
- data/README +8 -8
- data/Rakefile +2 -2
- data/lib/mxx_ru/abstract_target.rb +1 -1
- data/lib/mxx_ru/binary_library.rb +1 -1
- data/lib/mxx_ru/binary_target.rb +1 -1
- data/lib/mxx_ru/binary_unittest.rb +36 -2
- data/lib/mxx_ru/cmd_line_option_processor.rb +1 -1
- data/lib/mxx_ru/compat.rb +1 -1
- data/lib/mxx_ru/cpp.rb +1 -1
- data/lib/mxx_ru/cpp/analyzer.rb +1 -1
- data/lib/mxx_ru/cpp/composite.rb +1 -1
- data/lib/mxx_ru/cpp/detect_toolset.rb +2 -2
- data/lib/mxx_ru/cpp/lib_collection.rb +1 -1
- data/lib/mxx_ru/cpp/mode.rb +1 -1
- data/lib/mxx_ru/cpp/obj_placement.rb +1 -1
- data/lib/mxx_ru/cpp/obj_placements/custom_subdir.rb +1 -1
- data/lib/mxx_ru/cpp/qt.rb +1 -1
- data/lib/mxx_ru/cpp/qt4.rb +1 -1
- data/lib/mxx_ru/cpp/qt4_via_pkg_config.rb +1 -1
- data/lib/mxx_ru/cpp/qt4details.rb +1 -1
- data/lib/mxx_ru/cpp/rucodegen.rb +1 -1
- data/lib/mxx_ru/cpp/source_file.rb +1 -1
- data/lib/mxx_ru/cpp/target.rb +1 -1
- data/lib/mxx_ru/cpp/toolset.rb +70 -7
- data/lib/mxx_ru/cpp/toolsets/bcc_win32_5.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/bcc_win32_family.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/c89_etk_nsk.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/c89_nsk.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/c89_nsk_family.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/clang_family.rb +10 -4
- data/lib/mxx_ru/cpp/toolsets/clang_linux.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/gcc_cygwin.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/gcc_darwin.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/gcc_family.rb +10 -15
- data/lib/mxx_ru/cpp/toolsets/gcc_linux.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/gcc_mingw.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/gcc_sparc_solaris.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/gcc_unix_family.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/icc_win.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/vc10.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/vc11.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/vc12.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/vc7.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/vc8.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/vc8_family.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/vc9.rb +1 -1
- data/lib/mxx_ru/cpp/toolsets/vc_family.rb +1 -1
- data/lib/mxx_ru/environment_setup.rb +1 -1
- data/lib/mxx_ru/ex.rb +1 -1
- data/lib/mxx_ru/generators/bin-unittest/g.rb +1 -1
- data/lib/mxx_ru/generators/cpp-build-root/g.rb +1 -1
- data/lib/mxx_ru/generators/cpp-composite/g.rb +1 -1
- data/lib/mxx_ru/generators/cpp-dll/g.rb +1 -1
- data/lib/mxx_ru/generators/cpp-exe/g.rb +1 -1
- data/lib/mxx_ru/generators/cpp-lib-collection/g.rb +1 -1
- data/lib/mxx_ru/generators/cpp-lib/g.rb +1 -1
- data/lib/mxx_ru/generators/impl/cpp/generation.rb +1 -1
- data/lib/mxx_ru/generators/impl/std_receiver.rb +1 -1
- data/lib/mxx_ru/makestyle_generator.rb +1 -1
- data/lib/mxx_ru/textfile_unittest.rb +1 -1
- data/lib/mxx_ru/util.rb +1 -1
- data/lib/mxx_ru/version.rb +2 -2
- data/tests/mxx_ru/generators/cpp/tc_generator.rb +1 -1
- data/tests/mxx_ru/generators/cpp/tc_template_params.rb +1 -1
- data/tests/unix/lib_linking_mode/tc_normal_build.rb +1 -1
- data/tests/unix/lib_order/a.cpp +3 -3
- data/tests/unix/lib_order/tc_normal_build.rb +1 -1
- metadata +119 -123
- data/tests/cpp/lib_from_lib_dependecies/a.cpp +0 -3
data/lib/mxx_ru/version.rb
CHANGED
@@ -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-
|
4
|
+
# Copyright (c) 2006-2014, 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.
|
37
|
+
MXX_RU_VERSION = '1.6.3'
|
@@ -3,7 +3,7 @@ require 'test/unit'
|
|
3
3
|
require 'mxx_ru/generators/impl/cpp/generation'
|
4
4
|
|
5
5
|
class TC_GeneratorsCppTemplateParams < Test::Unit::TestCase
|
6
|
-
MODULE = MxxRu::Generators::Impl::Cpp
|
6
|
+
MODULE = MxxRu::Generators::Impl::Cpp unless defined?( MODULE )
|
7
7
|
|
8
8
|
class TestReceiver
|
9
9
|
attr_reader :result
|
@@ -3,7 +3,7 @@ require 'test/unit'
|
|
3
3
|
require 'mxx_ru/generators/impl/cpp/generation'
|
4
4
|
|
5
5
|
class TC_GeneratorsCppTemplateParams < Test::Unit::TestCase
|
6
|
-
MODULE = MxxRu::Generators::Impl::Cpp
|
6
|
+
MODULE = MxxRu::Generators::Impl::Cpp until defined?( MODULE )
|
7
7
|
|
8
8
|
def test_empty_options
|
9
9
|
t1 = MODULE::TemplateParams.new( MODULE::LIB, MODULE::Options.new )
|
@@ -2,7 +2,7 @@ require 'test/unit'
|
|
2
2
|
|
3
3
|
require File.expand_path( File.dirname( __FILE__ ) + '/../../test_with_compilation' )
|
4
4
|
|
5
|
-
class
|
5
|
+
class TC_Unix_LibLinkingMode_NormalBuild < Test::Unit::TestCase
|
6
6
|
include TestWithCompilation
|
7
7
|
|
8
8
|
test_path 'tests/unix/lib_linking_mode'
|
data/tests/unix/lib_order/a.cpp
CHANGED
@@ -1,3 +1,3 @@
|
|
1
|
-
#include <cstdio>
|
2
|
-
|
3
|
-
void
|
1
|
+
#include <cstdio>
|
2
|
+
|
3
|
+
void a() { std::printf( "a\n" ); }
|
@@ -2,7 +2,7 @@ require 'test/unit'
|
|
2
2
|
|
3
3
|
require File.expand_path( File.dirname( __FILE__ ) + '/../../test_with_compilation' )
|
4
4
|
|
5
|
-
class
|
5
|
+
class TC_Unix_LibOrder_NormalBuild < Test::Unit::TestCase
|
6
6
|
include TestWithCompilation
|
7
7
|
|
8
8
|
test_path 'tests/unix/lib_order'
|
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: Mxx_ru
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
5
|
-
prerelease:
|
4
|
+
version: 1.6.3
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- The Mxx_ru Project
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2014-09-30 00:00:00.000000000 Z
|
13
12
|
dependencies: []
|
14
13
|
description:
|
15
14
|
email: eao197@yahoo.com
|
@@ -23,6 +22,111 @@ extra_rdoc_files:
|
|
23
22
|
- NEWS
|
24
23
|
files:
|
25
24
|
- bin/mxxrugen
|
25
|
+
- examples/exe_and_lib/main.cpp
|
26
|
+
- examples/exe_and_lib/prj.rb
|
27
|
+
- examples/exe_and_lib/say.cpp
|
28
|
+
- examples/exe_and_lib/say.hpp
|
29
|
+
- examples/exe_and_lib/say.rb
|
30
|
+
- examples/exe_dll_lib/inout.cpp
|
31
|
+
- examples/exe_dll_lib/inout.hpp
|
32
|
+
- examples/exe_dll_lib/inout.rb
|
33
|
+
- examples/exe_dll_lib/main.cpp
|
34
|
+
- examples/exe_dll_lib/prj.rb
|
35
|
+
- examples/exe_dll_lib/say.cpp
|
36
|
+
- examples/exe_dll_lib/say.hpp
|
37
|
+
- examples/exe_dll_lib/say.rb
|
38
|
+
- examples/exe_dll_lib_2/build.rb
|
39
|
+
- examples/exe_dll_lib_2/inout/inout.cpp
|
40
|
+
- examples/exe_dll_lib_2/inout/inout.hpp
|
41
|
+
- examples/exe_dll_lib_2/inout/prj.rb
|
42
|
+
- examples/exe_dll_lib_2/main/main.cpp
|
43
|
+
- examples/exe_dll_lib_2/main/prj.rb
|
44
|
+
- examples/exe_dll_lib_2/say/prj.rb
|
45
|
+
- examples/exe_dll_lib_2/say/say.cpp
|
46
|
+
- examples/exe_dll_lib_2/say/say.hpp
|
47
|
+
- examples/exe_dll_lib_3/build.rb
|
48
|
+
- examples/exe_dll_lib_3/inout/inout.cpp
|
49
|
+
- examples/exe_dll_lib_3/inout/inout.hpp
|
50
|
+
- examples/exe_dll_lib_3/inout/prj.rb
|
51
|
+
- examples/exe_dll_lib_3/log/log.cpp
|
52
|
+
- examples/exe_dll_lib_3/log/log.hpp
|
53
|
+
- examples/exe_dll_lib_3/log/prj.rb
|
54
|
+
- examples/exe_dll_lib_3/logic/logic.cpp
|
55
|
+
- examples/exe_dll_lib_3/logic/logic.hpp
|
56
|
+
- examples/exe_dll_lib_3/logic/prj.rb
|
57
|
+
- examples/exe_dll_lib_3/main/main.cpp
|
58
|
+
- examples/exe_dll_lib_3/main/prj.rb
|
59
|
+
- examples/exe_dll_lib_3/math/math.cpp
|
60
|
+
- examples/exe_dll_lib_3/math/math.hpp
|
61
|
+
- examples/exe_dll_lib_3/math/prj.rb
|
62
|
+
- examples/exe_dll_lib_3/say/prj.rb
|
63
|
+
- examples/exe_dll_lib_3/say/say.cpp
|
64
|
+
- examples/exe_dll_lib_3/say/say.hpp
|
65
|
+
- examples/simple_exe/main.cpp
|
66
|
+
- examples/simple_exe/prj.rb
|
67
|
+
- lib/mxx_ru/abstract_target.rb
|
68
|
+
- lib/mxx_ru/binary_library.rb
|
69
|
+
- lib/mxx_ru/binary_target.rb
|
70
|
+
- lib/mxx_ru/binary_unittest.rb
|
71
|
+
- lib/mxx_ru/cmd_line_option_processor.rb
|
72
|
+
- lib/mxx_ru/compat.rb
|
73
|
+
- lib/mxx_ru/cpp.rb
|
74
|
+
- lib/mxx_ru/cpp/analyzer.rb
|
75
|
+
- lib/mxx_ru/cpp/composite.rb
|
76
|
+
- lib/mxx_ru/cpp/detect_toolset.rb
|
77
|
+
- lib/mxx_ru/cpp/lib_collection.rb
|
78
|
+
- lib/mxx_ru/cpp/mode.rb
|
79
|
+
- lib/mxx_ru/cpp/obj_placement.rb
|
80
|
+
- lib/mxx_ru/cpp/obj_placements/custom_subdir.rb
|
81
|
+
- lib/mxx_ru/cpp/qt.rb
|
82
|
+
- lib/mxx_ru/cpp/qt4.rb
|
83
|
+
- lib/mxx_ru/cpp/qt4_via_pkg_config.rb
|
84
|
+
- lib/mxx_ru/cpp/qt4details.rb
|
85
|
+
- lib/mxx_ru/cpp/rucodegen.rb
|
86
|
+
- lib/mxx_ru/cpp/source_file.rb
|
87
|
+
- lib/mxx_ru/cpp/target.rb
|
88
|
+
- lib/mxx_ru/cpp/toolset.rb
|
89
|
+
- lib/mxx_ru/cpp/toolsets/bcc_win32_5.rb
|
90
|
+
- lib/mxx_ru/cpp/toolsets/bcc_win32_family.rb
|
91
|
+
- lib/mxx_ru/cpp/toolsets/c89_etk_nsk.rb
|
92
|
+
- lib/mxx_ru/cpp/toolsets/c89_nsk.rb
|
93
|
+
- lib/mxx_ru/cpp/toolsets/c89_nsk_family.rb
|
94
|
+
- lib/mxx_ru/cpp/toolsets/clang_family.rb
|
95
|
+
- lib/mxx_ru/cpp/toolsets/clang_linux.rb
|
96
|
+
- lib/mxx_ru/cpp/toolsets/gcc_cygwin.rb
|
97
|
+
- lib/mxx_ru/cpp/toolsets/gcc_darwin.rb
|
98
|
+
- lib/mxx_ru/cpp/toolsets/gcc_family.rb
|
99
|
+
- lib/mxx_ru/cpp/toolsets/gcc_linux.rb
|
100
|
+
- lib/mxx_ru/cpp/toolsets/gcc_mingw.rb
|
101
|
+
- lib/mxx_ru/cpp/toolsets/gcc_sparc_solaris.rb
|
102
|
+
- lib/mxx_ru/cpp/toolsets/gcc_unix_family.rb
|
103
|
+
- lib/mxx_ru/cpp/toolsets/icc_win.rb
|
104
|
+
- lib/mxx_ru/cpp/toolsets/vc10.rb
|
105
|
+
- lib/mxx_ru/cpp/toolsets/vc11.rb
|
106
|
+
- lib/mxx_ru/cpp/toolsets/vc12.rb
|
107
|
+
- lib/mxx_ru/cpp/toolsets/vc7.rb
|
108
|
+
- lib/mxx_ru/cpp/toolsets/vc8.rb
|
109
|
+
- lib/mxx_ru/cpp/toolsets/vc8_family.rb
|
110
|
+
- lib/mxx_ru/cpp/toolsets/vc9.rb
|
111
|
+
- lib/mxx_ru/cpp/toolsets/vc_family.rb
|
112
|
+
- lib/mxx_ru/environment_setup.rb
|
113
|
+
- lib/mxx_ru/ex.rb
|
114
|
+
- lib/mxx_ru/generators/bin-unittest/g.rb
|
115
|
+
- lib/mxx_ru/generators/bin-unittest/template.erb
|
116
|
+
- lib/mxx_ru/generators/cpp-build-root/g.rb
|
117
|
+
- lib/mxx_ru/generators/cpp-build-root/template.erb
|
118
|
+
- lib/mxx_ru/generators/cpp-composite/g.rb
|
119
|
+
- lib/mxx_ru/generators/cpp-dll/g.rb
|
120
|
+
- lib/mxx_ru/generators/cpp-exe/g.rb
|
121
|
+
- lib/mxx_ru/generators/cpp-lib-collection/g.rb
|
122
|
+
- lib/mxx_ru/generators/cpp-lib/g.rb
|
123
|
+
- lib/mxx_ru/generators/impl/cpp/generation.rb
|
124
|
+
- lib/mxx_ru/generators/impl/cpp/template.erb
|
125
|
+
- lib/mxx_ru/generators/impl/std_receiver.rb
|
126
|
+
- lib/mxx_ru/makestyle_generator.rb
|
127
|
+
- lib/mxx_ru/textfile_unittest.rb
|
128
|
+
- lib/mxx_ru/util.rb
|
129
|
+
- lib/mxx_ru/version.rb
|
26
130
|
- tests/cpp/cpp_sources_glob/build.rb
|
27
131
|
- tests/cpp/cpp_sources_glob/some/module/1/f1.cpp
|
28
132
|
- tests/cpp/cpp_sources_glob/some/module/2/f2.cpp
|
@@ -35,7 +139,6 @@ files:
|
|
35
139
|
- tests/cpp/custom_target_prefix/dll.cpp
|
36
140
|
- tests/cpp/custom_target_prefix/dll.rb
|
37
141
|
- tests/cpp/custom_target_prefix/tc_custom_target_prefix.rb
|
38
|
-
- tests/cpp/lib_from_lib_dependecies/a.cpp
|
39
142
|
- tests/cpp/lib_from_lib_dependecies/a.rb
|
40
143
|
- tests/cpp/lib_from_lib_dependecies/b.cpp
|
41
144
|
- tests/cpp/lib_from_lib_dependecies/b.rb
|
@@ -66,6 +169,12 @@ files:
|
|
66
169
|
- tests/cpp/mswin_res_exe/src/main.cpp
|
67
170
|
- tests/cpp/mswin_res_exe/src/main.rc
|
68
171
|
- tests/cpp/mswin_res_exe/tc_mswin_res_exe.rb
|
172
|
+
- tests/cpp/rucodegen.embedded/host_config.cpp
|
173
|
+
- tests/cpp/rucodegen.embedded/impl/conn_params.cpp
|
174
|
+
- tests/cpp/rucodegen.embedded/impl/conn_params.rb
|
175
|
+
- tests/cpp/rucodegen.embedded/impl/h/conn_params.hpp
|
176
|
+
- tests/cpp/rucodegen.embedded/prj.rb
|
177
|
+
- tests/cpp/rucodegen.embedded/tc_rucodegen.rb
|
69
178
|
- tests/cpp/rucodegen/host_config.cpp
|
70
179
|
- tests/cpp/rucodegen/host_config.rb
|
71
180
|
- tests/cpp/rucodegen/impl/conn_params.cpp
|
@@ -73,12 +182,6 @@ files:
|
|
73
182
|
- tests/cpp/rucodegen/impl/h/conn_params.hpp
|
74
183
|
- tests/cpp/rucodegen/prj.rb
|
75
184
|
- tests/cpp/rucodegen/tc_rucodegen.rb
|
76
|
-
- tests/cpp/rucodegen.embedded/host_config.cpp
|
77
|
-
- tests/cpp/rucodegen.embedded/impl/conn_params.cpp
|
78
|
-
- tests/cpp/rucodegen.embedded/impl/conn_params.rb
|
79
|
-
- tests/cpp/rucodegen.embedded/impl/h/conn_params.hpp
|
80
|
-
- tests/cpp/rucodegen.embedded/prj.rb
|
81
|
-
- tests/cpp/rucodegen.embedded/tc_rucodegen.rb
|
82
185
|
- tests/cpp/textfile_unittest/build.rb
|
83
186
|
- tests/cpp/textfile_unittest/etalons/out_0.txt
|
84
187
|
- tests/cpp/textfile_unittest/etalons/out_1.txt
|
@@ -233,141 +336,34 @@ files:
|
|
233
336
|
- tests/unix/lib_order/main.cpp
|
234
337
|
- tests/unix/lib_order/main.rb
|
235
338
|
- tests/unix/lib_order/tc_normal_build.rb
|
236
|
-
- lib/mxx_ru/abstract_target.rb
|
237
|
-
- lib/mxx_ru/binary_library.rb
|
238
|
-
- lib/mxx_ru/binary_target.rb
|
239
|
-
- lib/mxx_ru/binary_unittest.rb
|
240
|
-
- lib/mxx_ru/cmd_line_option_processor.rb
|
241
|
-
- lib/mxx_ru/compat.rb
|
242
|
-
- lib/mxx_ru/cpp/analyzer.rb
|
243
|
-
- lib/mxx_ru/cpp/composite.rb
|
244
|
-
- lib/mxx_ru/cpp/detect_toolset.rb
|
245
|
-
- lib/mxx_ru/cpp/lib_collection.rb
|
246
|
-
- lib/mxx_ru/cpp/mode.rb
|
247
|
-
- lib/mxx_ru/cpp/obj_placement.rb
|
248
|
-
- lib/mxx_ru/cpp/obj_placements/custom_subdir.rb
|
249
|
-
- lib/mxx_ru/cpp/qt.rb
|
250
|
-
- lib/mxx_ru/cpp/qt4.rb
|
251
|
-
- lib/mxx_ru/cpp/qt4details.rb
|
252
|
-
- lib/mxx_ru/cpp/qt4_via_pkg_config.rb
|
253
|
-
- lib/mxx_ru/cpp/rucodegen.rb
|
254
|
-
- lib/mxx_ru/cpp/source_file.rb
|
255
|
-
- lib/mxx_ru/cpp/target.rb
|
256
|
-
- lib/mxx_ru/cpp/toolset.rb
|
257
|
-
- lib/mxx_ru/cpp/toolsets/bcc_win32_5.rb
|
258
|
-
- lib/mxx_ru/cpp/toolsets/bcc_win32_family.rb
|
259
|
-
- lib/mxx_ru/cpp/toolsets/c89_etk_nsk.rb
|
260
|
-
- lib/mxx_ru/cpp/toolsets/c89_nsk.rb
|
261
|
-
- lib/mxx_ru/cpp/toolsets/c89_nsk_family.rb
|
262
|
-
- lib/mxx_ru/cpp/toolsets/clang_family.rb
|
263
|
-
- lib/mxx_ru/cpp/toolsets/clang_linux.rb
|
264
|
-
- lib/mxx_ru/cpp/toolsets/gcc_cygwin.rb
|
265
|
-
- lib/mxx_ru/cpp/toolsets/gcc_darwin.rb
|
266
|
-
- lib/mxx_ru/cpp/toolsets/gcc_family.rb
|
267
|
-
- lib/mxx_ru/cpp/toolsets/gcc_linux.rb
|
268
|
-
- lib/mxx_ru/cpp/toolsets/gcc_mingw.rb
|
269
|
-
- lib/mxx_ru/cpp/toolsets/gcc_sparc_solaris.rb
|
270
|
-
- lib/mxx_ru/cpp/toolsets/gcc_unix_family.rb
|
271
|
-
- lib/mxx_ru/cpp/toolsets/icc_win.rb
|
272
|
-
- lib/mxx_ru/cpp/toolsets/vc10.rb
|
273
|
-
- lib/mxx_ru/cpp/toolsets/vc11.rb
|
274
|
-
- lib/mxx_ru/cpp/toolsets/vc12.rb
|
275
|
-
- lib/mxx_ru/cpp/toolsets/vc7.rb
|
276
|
-
- lib/mxx_ru/cpp/toolsets/vc8.rb
|
277
|
-
- lib/mxx_ru/cpp/toolsets/vc8_family.rb
|
278
|
-
- lib/mxx_ru/cpp/toolsets/vc9.rb
|
279
|
-
- lib/mxx_ru/cpp/toolsets/vc_family.rb
|
280
|
-
- lib/mxx_ru/cpp.rb
|
281
|
-
- lib/mxx_ru/environment_setup.rb
|
282
|
-
- lib/mxx_ru/ex.rb
|
283
|
-
- lib/mxx_ru/generators/bin-unittest/g.rb
|
284
|
-
- lib/mxx_ru/generators/bin-unittest/template.erb
|
285
|
-
- lib/mxx_ru/generators/cpp-build-root/g.rb
|
286
|
-
- lib/mxx_ru/generators/cpp-build-root/template.erb
|
287
|
-
- lib/mxx_ru/generators/cpp-composite/g.rb
|
288
|
-
- lib/mxx_ru/generators/cpp-dll/g.rb
|
289
|
-
- lib/mxx_ru/generators/cpp-exe/g.rb
|
290
|
-
- lib/mxx_ru/generators/cpp-lib/g.rb
|
291
|
-
- lib/mxx_ru/generators/cpp-lib-collection/g.rb
|
292
|
-
- lib/mxx_ru/generators/impl/cpp/generation.rb
|
293
|
-
- lib/mxx_ru/generators/impl/cpp/template.erb
|
294
|
-
- lib/mxx_ru/generators/impl/std_receiver.rb
|
295
|
-
- lib/mxx_ru/makestyle_generator.rb
|
296
|
-
- lib/mxx_ru/textfile_unittest.rb
|
297
|
-
- lib/mxx_ru/util.rb
|
298
|
-
- lib/mxx_ru/version.rb
|
299
|
-
- examples/exe_and_lib/main.cpp
|
300
|
-
- examples/exe_and_lib/prj.rb
|
301
|
-
- examples/exe_and_lib/say.cpp
|
302
|
-
- examples/exe_and_lib/say.hpp
|
303
|
-
- examples/exe_and_lib/say.rb
|
304
|
-
- examples/exe_dll_lib/inout.cpp
|
305
|
-
- examples/exe_dll_lib/inout.hpp
|
306
|
-
- examples/exe_dll_lib/inout.rb
|
307
|
-
- examples/exe_dll_lib/main.cpp
|
308
|
-
- examples/exe_dll_lib/prj.rb
|
309
|
-
- examples/exe_dll_lib/say.cpp
|
310
|
-
- examples/exe_dll_lib/say.hpp
|
311
|
-
- examples/exe_dll_lib/say.rb
|
312
|
-
- examples/exe_dll_lib_2/build.rb
|
313
|
-
- examples/exe_dll_lib_2/inout/inout.cpp
|
314
|
-
- examples/exe_dll_lib_2/inout/inout.hpp
|
315
|
-
- examples/exe_dll_lib_2/inout/prj.rb
|
316
|
-
- examples/exe_dll_lib_2/main/main.cpp
|
317
|
-
- examples/exe_dll_lib_2/main/prj.rb
|
318
|
-
- examples/exe_dll_lib_2/say/prj.rb
|
319
|
-
- examples/exe_dll_lib_2/say/say.cpp
|
320
|
-
- examples/exe_dll_lib_2/say/say.hpp
|
321
|
-
- examples/exe_dll_lib_3/build.rb
|
322
|
-
- examples/exe_dll_lib_3/inout/inout.cpp
|
323
|
-
- examples/exe_dll_lib_3/inout/inout.hpp
|
324
|
-
- examples/exe_dll_lib_3/inout/prj.rb
|
325
|
-
- examples/exe_dll_lib_3/log/log.cpp
|
326
|
-
- examples/exe_dll_lib_3/log/log.hpp
|
327
|
-
- examples/exe_dll_lib_3/log/prj.rb
|
328
|
-
- examples/exe_dll_lib_3/logic/logic.cpp
|
329
|
-
- examples/exe_dll_lib_3/logic/logic.hpp
|
330
|
-
- examples/exe_dll_lib_3/logic/prj.rb
|
331
|
-
- examples/exe_dll_lib_3/main/main.cpp
|
332
|
-
- examples/exe_dll_lib_3/main/prj.rb
|
333
|
-
- examples/exe_dll_lib_3/math/math.cpp
|
334
|
-
- examples/exe_dll_lib_3/math/math.hpp
|
335
|
-
- examples/exe_dll_lib_3/math/prj.rb
|
336
|
-
- examples/exe_dll_lib_3/say/prj.rb
|
337
|
-
- examples/exe_dll_lib_3/say/say.cpp
|
338
|
-
- examples/exe_dll_lib_3/say/say.hpp
|
339
|
-
- examples/simple_exe/main.cpp
|
340
|
-
- examples/simple_exe/prj.rb
|
341
339
|
- THANKS
|
342
340
|
- README
|
343
341
|
- Rakefile
|
344
342
|
- COPYING
|
345
343
|
- NEWS
|
346
|
-
homepage: http://
|
344
|
+
homepage: http://sourceforge.net/projects/mxxru
|
347
345
|
licenses: []
|
346
|
+
metadata: {}
|
348
347
|
post_install_message:
|
349
348
|
rdoc_options:
|
350
|
-
- -S
|
351
349
|
- --main
|
352
350
|
- README
|
353
351
|
require_paths:
|
354
352
|
- lib
|
355
353
|
required_ruby_version: !ruby/object:Gem::Requirement
|
356
|
-
none: false
|
357
354
|
requirements:
|
358
|
-
- -
|
355
|
+
- - '>='
|
359
356
|
- !ruby/object:Gem::Version
|
360
357
|
version: '0'
|
361
358
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
362
|
-
none: false
|
363
359
|
requirements:
|
364
|
-
- -
|
360
|
+
- - '>='
|
365
361
|
- !ruby/object:Gem::Version
|
366
362
|
version: '0'
|
367
363
|
requirements: []
|
368
364
|
rubyforge_project:
|
369
|
-
rubygems_version:
|
365
|
+
rubygems_version: 2.0.14
|
370
366
|
signing_key:
|
371
|
-
specification_version:
|
367
|
+
specification_version: 4
|
372
368
|
summary: Mxx_ru (Make++ on Ruby) is a cross-platform build tool
|
373
369
|
test_files: []
|