Mxx_ru 1.5.1 → 1.5.2

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'rubygems'
2
- Gem::manage_gems
2
+ #Gem::manage_gems
3
3
 
4
4
  require 'rake/gempackagetask'
5
5
  require 'rake/testtask'
@@ -301,7 +301,7 @@ module Cpp
301
301
  # a_module -- an instance of Qt4Modules::ModuleDescription.
302
302
  def use_module( a_module )
303
303
  @target.define a_module.define
304
- @target.lib a_module.library + '4'
304
+ @target.lib make_library_name( a_module.library )
305
305
  end
306
306
 
307
307
  # Add some Qt4 modules to target.
@@ -346,6 +346,21 @@ module Cpp
346
346
  end
347
347
 
348
348
  protected
349
+ # Create actual Qt library name with respect to debug/release mode on Windows.
350
+ #
351
+ # Since v.1.5.2
352
+ #
353
+ def make_library_name( base_library_name )
354
+ name =
355
+ if MxxRu::Util::IS_WINDOWS_PLATFORM &&
356
+ RUNTIME_DEBUG == @target.mxx_runtime_mode
357
+ base_library_name + 'd'
358
+ else
359
+ base_library_name
360
+ end
361
+
362
+ name + '4'
363
+ end
349
364
 
350
365
  # Perform generation from ui-files.
351
366
  def build_from_ui( a_target )
@@ -34,5 +34,5 @@
34
34
  #
35
35
  # puts 'Mxx_ru version is: ' + MXX_RU_VERSION
36
36
  #
37
- MXX_RU_VERSION = '1.5.1'
37
+ MXX_RU_VERSION = '1.5.2'
38
38
 
metadata CHANGED
@@ -1,7 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Mxx_ru
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.1
4
+ hash: 7
5
+ prerelease: false
6
+ segments:
7
+ - 1
8
+ - 5
9
+ - 2
10
+ version: 1.5.2
5
11
  platform: ruby
6
12
  authors:
7
13
  - The Mxx_ru Project
@@ -9,7 +15,7 @@ autorequire:
9
15
  bindir: bin
10
16
  cert_chain: []
11
17
 
12
- date: 2010-05-20 00:00:00 +04:00
18
+ date: 2010-05-26 00:00:00 +04:00
13
19
  default_executable:
14
20
  dependencies: []
15
21
 
@@ -26,126 +32,76 @@ extra_rdoc_files:
26
32
  - NEWS
27
33
  files:
28
34
  - bin/mxxrugen
29
- - tests/c
30
- - tests/cpp
31
- - tests/cpp/cpp_sources_glob
32
35
  - tests/cpp/cpp_sources_glob/build.rb
33
- - tests/cpp/cpp_sources_glob/some
34
- - tests/cpp/cpp_sources_glob/some/module
35
- - tests/cpp/cpp_sources_glob/some/module/1
36
36
  - tests/cpp/cpp_sources_glob/some/module/1/f1.cpp
37
- - tests/cpp/cpp_sources_glob/some/module/1/o
38
- - tests/cpp/cpp_sources_glob/some/module/2
39
37
  - tests/cpp/cpp_sources_glob/some/module/2/f2.cpp
40
- - tests/cpp/cpp_sources_glob/some/module/2/o
41
- - tests/cpp/cpp_sources_glob/some/module/3
42
38
  - tests/cpp/cpp_sources_glob/some/module/3/f3.cpp
43
- - tests/cpp/cpp_sources_glob/some/module/3/o
44
- - tests/cpp/cpp_sources_glob/some/module/4
45
39
  - tests/cpp/cpp_sources_glob/some/module/4/f4.cpp
46
- - tests/cpp/cpp_sources_glob/some/module/4/o
47
40
  - tests/cpp/cpp_sources_glob/some/module/funcs.hpp
48
41
  - tests/cpp/cpp_sources_glob/some/module/main.cpp
49
- - tests/cpp/cpp_sources_glob/some/module/o
50
42
  - tests/cpp/cpp_sources_glob/some/module/prj.rb
51
43
  - tests/cpp/cpp_sources_glob/tc_cpp_sources_glob.rb
52
- - tests/cpp/custom_target_prefix
53
44
  - tests/cpp/custom_target_prefix/dll.cpp
54
45
  - tests/cpp/custom_target_prefix/dll.rb
55
- - tests/cpp/custom_target_prefix/o
56
46
  - tests/cpp/custom_target_prefix/tc_custom_target_prefix.rb
57
- - tests/cpp/lib_from_lib_dependecies
58
47
  - tests/cpp/lib_from_lib_dependecies/a.cpp
59
48
  - tests/cpp/lib_from_lib_dependecies/a.rb
60
49
  - tests/cpp/lib_from_lib_dependecies/b.cpp
61
50
  - tests/cpp/lib_from_lib_dependecies/b.rb
62
51
  - tests/cpp/lib_from_lib_dependecies/checker.cpp
63
52
  - tests/cpp/lib_from_lib_dependecies/checker.rb
64
- - tests/cpp/lib_from_lib_dependecies/etalon
65
53
  - tests/cpp/lib_from_lib_dependecies/etalon/first.txt
66
54
  - tests/cpp/lib_from_lib_dependecies/etalon/second.txt
67
55
  - tests/cpp/lib_from_lib_dependecies/first.ut.rb
68
- - tests/cpp/lib_from_lib_dependecies/o
69
- - tests/cpp/lib_from_lib_dependecies/out
70
56
  - tests/cpp/lib_from_lib_dependecies/second.ut.rb
71
57
  - tests/cpp/lib_from_lib_dependecies/tc_checker.rb
72
- - tests/cpp/mswin_res_dll
73
58
  - tests/cpp/mswin_res_dll/build.rb
74
59
  - tests/cpp/mswin_res_dll/dll.cpp
75
60
  - tests/cpp/mswin_res_dll/dll.rb
76
61
  - tests/cpp/mswin_res_dll/dll.rc
77
- - tests/cpp/mswin_res_dll/h
78
62
  - tests/cpp/mswin_res_dll/h/dll.hpp
79
63
  - tests/cpp/mswin_res_dll/h/res.h
80
64
  - tests/cpp/mswin_res_dll/main.cpp
81
65
  - tests/cpp/mswin_res_dll/main.rb
82
- - tests/cpp/mswin_res_dll/o
83
66
  - tests/cpp/mswin_res_dll/o/dll.o
84
- - tests/cpp/mswin_res_dll/res
85
67
  - tests/cpp/mswin_res_dll/res/tree_fol.bmp
86
68
  - tests/cpp/mswin_res_dll/res/tree_state_1.bmp
87
69
  - tests/cpp/mswin_res_dll/res/tree_state_2.bmp
88
70
  - tests/cpp/mswin_res_dll/tc_mswin_res_dll.rb
89
- - tests/cpp/mswin_res_exe
90
71
  - tests/cpp/mswin_res_exe/build.rb
91
- - tests/cpp/mswin_res_exe/h
92
72
  - tests/cpp/mswin_res_exe/h/res.h
93
- - tests/cpp/mswin_res_exe/o
94
- - tests/cpp/mswin_res_exe/res
95
73
  - tests/cpp/mswin_res_exe/res/tree_fol.bmp
96
74
  - tests/cpp/mswin_res_exe/res/tree_state_1.bmp
97
75
  - tests/cpp/mswin_res_exe/res/tree_state_2.bmp
98
- - tests/cpp/mswin_res_exe/src
99
76
  - tests/cpp/mswin_res_exe/src/main.cpp
100
77
  - tests/cpp/mswin_res_exe/src/main.rc
101
- - tests/cpp/mswin_res_exe/src/o
102
78
  - tests/cpp/mswin_res_exe/src/o/main.o
103
79
  - tests/cpp/mswin_res_exe/tc_mswin_res_exe.rb
104
- - tests/cpp/o
105
- - tests/cpp/rucodegen
106
- - tests/cpp/rucodegen/h
107
80
  - tests/cpp/rucodegen/host_config.cpp
108
81
  - tests/cpp/rucodegen/host_config.rb
109
- - tests/cpp/rucodegen/impl
110
82
  - tests/cpp/rucodegen/impl/conn_params.cpp
111
83
  - tests/cpp/rucodegen/impl/conn_params.rb
112
- - tests/cpp/rucodegen/impl/h
113
84
  - tests/cpp/rucodegen/impl/h/conn_params.hpp
114
- - tests/cpp/rucodegen/impl/o
115
- - tests/cpp/rucodegen/o
116
85
  - tests/cpp/rucodegen/prj.rb
117
86
  - tests/cpp/rucodegen/tc_rucodegen.rb
118
- - tests/cpp/rucodegen.embedded
119
- - tests/cpp/rucodegen.embedded/h
120
87
  - tests/cpp/rucodegen.embedded/host_config.cpp
121
- - tests/cpp/rucodegen.embedded/impl
122
88
  - tests/cpp/rucodegen.embedded/impl/conn_params.cpp
123
89
  - tests/cpp/rucodegen.embedded/impl/conn_params.rb
124
- - tests/cpp/rucodegen.embedded/impl/h
125
90
  - tests/cpp/rucodegen.embedded/impl/h/conn_params.hpp
126
- - tests/cpp/rucodegen.embedded/impl/o
127
- - tests/cpp/rucodegen.embedded/o
128
91
  - tests/cpp/rucodegen.embedded/prj.rb
129
92
  - tests/cpp/rucodegen.embedded/tc_rucodegen.rb
130
- - tests/cpp/textfile_unittest
131
93
  - tests/cpp/textfile_unittest/build.rb
132
- - tests/cpp/textfile_unittest/etalons
133
94
  - tests/cpp/textfile_unittest/etalons/out_0.txt
134
95
  - tests/cpp/textfile_unittest/etalons/out_1.txt
135
96
  - tests/cpp/textfile_unittest/etalons/out_128.txt
136
97
  - tests/cpp/textfile_unittest/main.cpp
137
- - tests/cpp/textfile_unittest/o
138
98
  - tests/cpp/textfile_unittest/prj.rb
139
99
  - tests/cpp/textfile_unittest/prj.ut.rb
140
100
  - tests/cpp/textfile_unittest/tc_textfile_unittest.rb
141
101
  - tests/cpp/toolset_name.rb
142
- - tests/cpp/vc_cleanup
143
102
  - tests/cpp/vc_cleanup/dll_hi.cpp
144
103
  - tests/cpp/vc_cleanup/exe_hi.cpp
145
- - tests/cpp/vc_cleanup/lib
146
- - tests/cpp/vc_cleanup/lib/simple_target_root
147
104
  - tests/cpp/vc_cleanup/lib_hi.cpp
148
- - tests/cpp/vc_cleanup/o
149
105
  - tests/cpp/vc_cleanup/prj_dll_no_implib.rb
150
106
  - tests/cpp/vc_cleanup/prj_dll_no_implib_simple_target_root.rb
151
107
  - tests/cpp/vc_cleanup/prj_dll_with_implib.rb
@@ -154,34 +110,22 @@ files:
154
110
  - tests/cpp/vc_cleanup/prj_exe_no_implib_simple_target_root.rb
155
111
  - tests/cpp/vc_cleanup/prj_lib.rb
156
112
  - tests/cpp/vc_cleanup/prj_lib_with_simple_target_root.rb
157
- - tests/cpp/vc_cleanup/simple_target_root
158
113
  - tests/cpp/vc_cleanup/tc_vc_cleanup.rb
159
- - tests/darwin
160
- - tests/darwin/bundle_target_type
161
114
  - tests/darwin/bundle_target_type/my_test_bundle.c
162
115
  - tests/darwin/bundle_target_type/my_test_bundle.rb
163
116
  - tests/darwin/bundle_target_type/tc_normal_build.rb
164
- - tests/mxx_ru
165
- - tests/mxx_ru/binary_library
166
117
  - tests/mxx_ru/binary_library/tc_binary_library.rb
167
118
  - tests/mxx_ru/binary_library/tc_binary_target_lib_methods.rb
168
- - tests/mxx_ru/change_default_value
169
- - tests/mxx_ru/change_default_value/ignoring_by_build_root
170
119
  - tests/mxx_ru/change_default_value/ignoring_by_build_root/build.rb
171
120
  - tests/mxx_ru/change_default_value/ignoring_by_build_root/child_1.rb
172
- - tests/mxx_ru/change_default_value/ignoring_by_child_1
173
121
  - tests/mxx_ru/change_default_value/ignoring_by_child_1/build.rb
174
122
  - tests/mxx_ru/change_default_value/ignoring_by_child_1/child_1.rb
175
123
  - tests/mxx_ru/change_default_value/ignoring_by_child_1/child_2.rb
176
- - tests/mxx_ru/change_default_value/ok
177
124
  - tests/mxx_ru/change_default_value/ok/build.rb
178
125
  - tests/mxx_ru/change_default_value/ok/child_1.rb
179
- - tests/mxx_ru/generators
180
- - tests/mxx_ru/generators/cpp
181
126
  - tests/mxx_ru/generators/cpp/tc_generator.rb
182
127
  - tests/mxx_ru/generators/cpp/tc_options.rb
183
128
  - tests/mxx_ru/generators/cpp/tc_template_params.rb
184
- - tests/mxx_ru/lib_collection
185
129
  - tests/mxx_ru/lib_collection/a.cpp
186
130
  - tests/mxx_ru/lib_collection/a.hpp
187
131
  - tests/mxx_ru/lib_collection/a.rb
@@ -213,49 +157,35 @@ files:
213
157
  - tests/mxx_ru/lib_collection/i.rb
214
158
  - tests/mxx_ru/lib_collection/main.cpp
215
159
  - tests/mxx_ru/lib_collection/main.rb
216
- - tests/mxx_ru/lib_collection/o
217
160
  - tests/mxx_ru/lib_collection/tc_lib_collection.rb
218
- - tests/mxx_ru/lib_path
219
161
  - tests/mxx_ru/lib_path/build.rb
220
162
  - tests/mxx_ru/lib_path/bye.c
221
163
  - tests/mxx_ru/lib_path/bye.rb
222
- - tests/mxx_ru/lib_path/bye_lib
223
164
  - tests/mxx_ru/lib_path/hi.c
224
165
  - tests/mxx_ru/lib_path/hi.rb
225
- - tests/mxx_ru/lib_path/hi_lib
226
166
  - tests/mxx_ru/lib_path/main.c
227
167
  - tests/mxx_ru/lib_path/main.rb
228
- - tests/mxx_ru/lib_path/o
229
168
  - tests/mxx_ru/lib_path/tc_lib_path.rb
230
- - tests/mxx_ru/obj_placements
231
169
  - tests/mxx_ru/obj_placements/tc_custom_subdir.rb
232
- - tests/mxx_ru/opt_lib_ext
233
170
  - tests/mxx_ru/opt_lib_ext/build.rb
234
171
  - tests/mxx_ru/opt_lib_ext/hi.c
235
172
  - tests/mxx_ru/opt_lib_ext/hi.h
236
173
  - tests/mxx_ru/opt_lib_ext/hi.rb
237
174
  - tests/mxx_ru/opt_lib_ext/main.c
238
- - tests/mxx_ru/opt_lib_ext/o
239
175
  - tests/mxx_ru/opt_lib_ext/tc_opt_lib_ext.rb
240
176
  - tests/mxx_ru/opt_lib_ext/test-no-ext.rb
241
177
  - tests/mxx_ru/opt_lib_ext/test-with-ext.rb
242
- - tests/mxx_ru/plural_form_methods
243
178
  - tests/mxx_ru/plural_form_methods/tc.rb
244
- - tests/mxx_ru/qt_gen
245
179
  - tests/mxx_ru/qt_gen/tc_uic_result_subdir.rb
246
- - tests/mxx_ru/target_ext
247
180
  - tests/mxx_ru/target_ext/dll_hi.cpp
248
181
  - tests/mxx_ru/target_ext/exe_hi.cpp
249
182
  - tests/mxx_ru/target_ext/lib_hi.cpp
250
- - tests/mxx_ru/target_ext/o
251
183
  - tests/mxx_ru/target_ext/prj_dll.rb
252
184
  - tests/mxx_ru/target_ext/prj_exe.rb
253
185
  - tests/mxx_ru/target_ext/prj_lib.rb
254
186
  - tests/mxx_ru/target_ext/tc_target_ext.rb
255
187
  - tests/mxx_ru/tc_makestyle_generator.rb
256
- - tests/mxx_ru/toolset
257
188
  - tests/mxx_ru/toolset/tc_tag_search.rb
258
- - tests/mxx_ru/vc8
259
189
  - tests/mxx_ru/vc8/tc_actual_manifest.rb
260
190
  - tests/mxx_ru/vc8/tc_append_mt_commands.rb
261
191
  - tests/mxx_ru/vc8/tc_default_manifest.rb
@@ -263,28 +193,21 @@ files:
263
193
  - tests/mxx_ru/vc8/tc_drop_default_manifest.rb
264
194
  - tests/mxx_ru/vc8/tc_invalid_params.rb
265
195
  - tests/mxx_ru/vc8/ts_vc8.rb
266
- - tests/qt
267
- - tests/qt/aclock
268
196
  - tests/qt/aclock/aclock.cpp
269
197
  - tests/qt/aclock/aclock.h
270
198
  - tests/qt/aclock/main.cpp
271
199
  - tests/qt/aclock/prj.rb
272
- - tests/qt/iconview
273
200
  - tests/qt/iconview/main.cpp
274
201
  - tests/qt/iconview/prj.rb
275
- - tests/qt/toplevel
276
202
  - tests/qt/toplevel/main.cpp
277
203
  - tests/qt/toplevel/options.ui
278
204
  - tests/qt/toplevel/prj.rb
279
205
  - tests/test_with_compilation.rb
280
- - tests/unix
281
- - tests/unix/lib_linking_mode
282
206
  - tests/unix/lib_linking_mode/a.hpp
283
207
  - tests/unix/lib_linking_mode/a_shared.cpp
284
208
  - tests/unix/lib_linking_mode/a_shared.rb
285
209
  - tests/unix/lib_linking_mode/a_static.cpp
286
210
  - tests/unix/lib_linking_mode/a_static.rb
287
- - tests/unix/lib_linking_mode/etalon
288
211
  - tests/unix/lib_linking_mode/etalon/shared.txt
289
212
  - tests/unix/lib_linking_mode/etalon/static.txt
290
213
  - tests/unix/lib_linking_mode/main.impl.cpp
@@ -303,11 +226,8 @@ files:
303
226
  - tests/unix/lib_linking_mode/main_static_2.cpp
304
227
  - tests/unix/lib_linking_mode/main_static_2.rb
305
228
  - tests/unix/lib_linking_mode/main_static_2.ut.rb
306
- - tests/unix/lib_linking_mode/o
307
- - tests/unix/lib_linking_mode/out
308
229
  - tests/unix/lib_linking_mode/tc_conflicted_build.rb
309
230
  - tests/unix/lib_linking_mode/tc_normal_build.rb
310
- - tests/unix/lib_order
311
231
  - tests/unix/lib_order/a.cpp
312
232
  - tests/unix/lib_order/a.hpp
313
233
  - tests/unix/lib_order/a.rb
@@ -324,21 +244,18 @@ files:
324
244
  - tests/unix/lib_order/main.cpp
325
245
  - tests/unix/lib_order/main.rb
326
246
  - tests/unix/lib_order/tc_normal_build.rb
327
- - lib/mxx_ru
328
247
  - lib/mxx_ru/abstract_target.rb
329
248
  - lib/mxx_ru/binary_library.rb
330
249
  - lib/mxx_ru/binary_target.rb
331
250
  - lib/mxx_ru/binary_unittest.rb
332
251
  - lib/mxx_ru/cmd_line_option_processor.rb
333
252
  - lib/mxx_ru/compat.rb
334
- - lib/mxx_ru/cpp
335
253
  - lib/mxx_ru/cpp/analyzer.rb
336
254
  - lib/mxx_ru/cpp/composite.rb
337
255
  - lib/mxx_ru/cpp/detect_toolset.rb
338
256
  - lib/mxx_ru/cpp/lib_collection.rb
339
257
  - lib/mxx_ru/cpp/mode.rb
340
258
  - lib/mxx_ru/cpp/obj_placement.rb
341
- - lib/mxx_ru/cpp/obj_placements
342
259
  - lib/mxx_ru/cpp/obj_placements/custom_subdir.rb
343
260
  - lib/mxx_ru/cpp/qt.rb
344
261
  - lib/mxx_ru/cpp/qt4.rb
@@ -348,7 +265,6 @@ files:
348
265
  - lib/mxx_ru/cpp/source_file.rb
349
266
  - lib/mxx_ru/cpp/target.rb
350
267
  - lib/mxx_ru/cpp/toolset.rb
351
- - lib/mxx_ru/cpp/toolsets
352
268
  - lib/mxx_ru/cpp/toolsets/bcc_win32_5.rb
353
269
  - lib/mxx_ru/cpp/toolsets/bcc_win32_family.rb
354
270
  - lib/mxx_ru/cpp/toolsets/c89_etk_nsk.rb
@@ -368,25 +284,15 @@ files:
368
284
  - lib/mxx_ru/cpp/toolsets/vc_family.rb
369
285
  - lib/mxx_ru/cpp.rb
370
286
  - lib/mxx_ru/ex.rb
371
- - lib/mxx_ru/generators
372
- - lib/mxx_ru/generators/bin-unittest
373
287
  - lib/mxx_ru/generators/bin-unittest/g.rb
374
288
  - lib/mxx_ru/generators/bin-unittest/template.erb
375
- - lib/mxx_ru/generators/cpp-build-root
376
289
  - lib/mxx_ru/generators/cpp-build-root/g.rb
377
290
  - lib/mxx_ru/generators/cpp-build-root/template.erb
378
- - lib/mxx_ru/generators/cpp-composite
379
291
  - lib/mxx_ru/generators/cpp-composite/g.rb
380
- - lib/mxx_ru/generators/cpp-dll
381
292
  - lib/mxx_ru/generators/cpp-dll/g.rb
382
- - lib/mxx_ru/generators/cpp-exe
383
293
  - lib/mxx_ru/generators/cpp-exe/g.rb
384
- - lib/mxx_ru/generators/cpp-lib
385
294
  - lib/mxx_ru/generators/cpp-lib/g.rb
386
- - lib/mxx_ru/generators/cpp-lib-collection
387
295
  - lib/mxx_ru/generators/cpp-lib-collection/g.rb
388
- - lib/mxx_ru/generators/impl
389
- - lib/mxx_ru/generators/impl/cpp
390
296
  - lib/mxx_ru/generators/impl/cpp/generation.rb
391
297
  - lib/mxx_ru/generators/impl/cpp/template.erb
392
298
  - lib/mxx_ru/generators/impl/std_receiver.rb
@@ -395,13 +301,11 @@ files:
395
301
  - lib/mxx_ru/textfile_unittest.rb
396
302
  - lib/mxx_ru/util.rb
397
303
  - lib/mxx_ru/version.rb
398
- - examples/exe_and_lib
399
304
  - examples/exe_and_lib/main.cpp
400
305
  - examples/exe_and_lib/prj.rb
401
306
  - examples/exe_and_lib/say.cpp
402
307
  - examples/exe_and_lib/say.hpp
403
308
  - examples/exe_and_lib/say.rb
404
- - examples/exe_dll_lib
405
309
  - examples/exe_dll_lib/inout.cpp
406
310
  - examples/exe_dll_lib/inout.hpp
407
311
  - examples/exe_dll_lib/inout.rb
@@ -410,31 +314,15 @@ files:
410
314
  - examples/exe_dll_lib/say.cpp
411
315
  - examples/exe_dll_lib/say.hpp
412
316
  - examples/exe_dll_lib/say.rb
413
- - examples/exe_dll_lib_2
414
- - examples/exe_dll_lib_2/bin
415
- - examples/exe_dll_lib_2/bin/lib
416
317
  - examples/exe_dll_lib_2/build.rb
417
- - examples/exe_dll_lib_2/inout
418
318
  - examples/exe_dll_lib_2/inout/inout.cpp
419
319
  - examples/exe_dll_lib_2/inout/inout.hpp
420
- - examples/exe_dll_lib_2/inout/o
421
320
  - examples/exe_dll_lib_2/inout/prj.rb
422
- - examples/exe_dll_lib_2/lib
423
- - examples/exe_dll_lib_2/main
424
321
  - examples/exe_dll_lib_2/main/main.cpp
425
- - examples/exe_dll_lib_2/main/o
426
322
  - examples/exe_dll_lib_2/main/prj.rb
427
- - examples/exe_dll_lib_2/say
428
- - examples/exe_dll_lib_2/say/o
429
323
  - examples/exe_dll_lib_2/say/prj.rb
430
324
  - examples/exe_dll_lib_2/say/say.cpp
431
325
  - examples/exe_dll_lib_2/say/say.hpp
432
- - examples/exe_dll_lib_2/tmp
433
- - examples/exe_dll_lib_2/tmp/output
434
- - examples/exe_dll_lib_2/tmp/output/inout
435
- - examples/exe_dll_lib_2/tmp/output/main
436
- - examples/exe_dll_lib_2/tmp/output/say
437
- - examples/simple_exe
438
326
  - examples/simple_exe/main.cpp
439
327
  - examples/simple_exe/prj.rb
440
328
  - THANKS
@@ -444,6 +332,8 @@ files:
444
332
  - NEWS
445
333
  has_rdoc: true
446
334
  homepage: http://www.rubyforge.com/projects/mxx-ru
335
+ licenses: []
336
+
447
337
  post_install_message:
448
338
  rdoc_options:
449
339
  - -S
@@ -452,23 +342,29 @@ rdoc_options:
452
342
  require_paths:
453
343
  - lib
454
344
  required_ruby_version: !ruby/object:Gem::Requirement
345
+ none: false
455
346
  requirements:
456
347
  - - ">="
457
348
  - !ruby/object:Gem::Version
349
+ hash: 3
350
+ segments:
351
+ - 0
458
352
  version: "0"
459
- version:
460
353
  required_rubygems_version: !ruby/object:Gem::Requirement
354
+ none: false
461
355
  requirements:
462
356
  - - ">="
463
357
  - !ruby/object:Gem::Version
358
+ hash: 3
359
+ segments:
360
+ - 0
464
361
  version: "0"
465
- version:
466
362
  requirements: []
467
363
 
468
364
  rubyforge_project:
469
- rubygems_version: 1.3.1
365
+ rubygems_version: 1.3.7
470
366
  signing_key:
471
- specification_version: 2
367
+ specification_version: 3
472
368
  summary: Mxx_ru (Make++ on Ruby) is a cross-platform build tool
473
369
  test_files: []
474
370