Mxx_ru 1.3.0 → 1.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (190) hide show
  1. data/COPYING +26 -26
  2. data/NEWS +107 -107
  3. data/README +21 -21
  4. data/Rakefile +56 -59
  5. data/examples/exe_and_lib/prj.rb +11 -11
  6. data/examples/exe_and_lib/say.rb +7 -7
  7. data/examples/exe_dll_lib/inout.rb +18 -18
  8. data/examples/exe_dll_lib/prj.rb +11 -11
  9. data/examples/exe_dll_lib/say.rb +9 -9
  10. data/examples/exe_dll_lib_2/build.rb +10 -10
  11. data/examples/exe_dll_lib_2/inout/prj.rb +16 -16
  12. data/examples/exe_dll_lib_2/main/prj.rb +9 -9
  13. data/examples/exe_dll_lib_2/say/prj.rb +8 -8
  14. data/examples/simple_exe/prj.rb +7 -7
  15. data/lib/mxx_ru/abstract_target.rb +335 -335
  16. data/lib/mxx_ru/binary_library.rb +106 -106
  17. data/lib/mxx_ru/binary_target.rb +173 -173
  18. data/lib/mxx_ru/binary_unittest.rb +143 -143
  19. data/lib/mxx_ru/compat.rb +33 -33
  20. data/lib/mxx_ru/cpp.rb +38 -38
  21. data/lib/mxx_ru/cpp/analyzer.rb +237 -237
  22. data/lib/mxx_ru/cpp/composite.rb +118 -118
  23. data/lib/mxx_ru/cpp/detect_toolset.rb +122 -122
  24. data/lib/mxx_ru/cpp/mode.rb +90 -90
  25. data/lib/mxx_ru/cpp/obj_placement.rb +330 -330
  26. data/lib/mxx_ru/cpp/obj_placements/custom_subdir.rb +155 -155
  27. data/lib/mxx_ru/cpp/qt.rb +366 -366
  28. data/lib/mxx_ru/cpp/rucodegen.rb +157 -157
  29. data/lib/mxx_ru/cpp/source_file.rb +79 -79
  30. data/lib/mxx_ru/cpp/target.rb +1523 -1523
  31. data/lib/mxx_ru/cpp/toolset.rb +1087 -1087
  32. data/lib/mxx_ru/cpp/toolsets/bcc_win32_5.rb +53 -53
  33. data/lib/mxx_ru/cpp/toolsets/bcc_win32_family.rb +460 -460
  34. data/lib/mxx_ru/cpp/toolsets/c89_etk_nsk.rb +59 -59
  35. data/lib/mxx_ru/cpp/toolsets/c89_nsk.rb +59 -59
  36. data/lib/mxx_ru/cpp/toolsets/c89_nsk_family.rb +277 -277
  37. data/lib/mxx_ru/cpp/toolsets/gcc_cygwin.rb +58 -58
  38. data/lib/mxx_ru/cpp/toolsets/gcc_family.rb +420 -424
  39. data/lib/mxx_ru/cpp/toolsets/gcc_linux.rb +64 -64
  40. data/lib/mxx_ru/cpp/toolsets/gcc_mingw.rb +150 -150
  41. data/lib/mxx_ru/cpp/toolsets/gcc_sparc_solaris.rb +91 -91
  42. data/lib/mxx_ru/cpp/toolsets/gcc_unix_family.rb +103 -84
  43. data/lib/mxx_ru/cpp/toolsets/vc7.rb +62 -62
  44. data/lib/mxx_ru/cpp/toolsets/vc8.rb +455 -455
  45. data/lib/mxx_ru/cpp/toolsets/vc_family.rb +448 -448
  46. data/lib/mxx_ru/ex.rb +165 -165
  47. data/lib/mxx_ru/makestyle_generator.rb +146 -146
  48. data/lib/mxx_ru/textfile_unittest.rb +303 -303
  49. data/lib/mxx_ru/util.rb +340 -340
  50. data/tests/c/pcre/chartables.c +183 -183
  51. data/tests/c/pcre/config.h +99 -99
  52. data/tests/c/pcre/dftables.c +167 -167
  53. data/tests/c/pcre/get.c +349 -349
  54. data/tests/c/pcre/internal.h +677 -677
  55. data/tests/c/pcre/maketables.c +140 -140
  56. data/tests/c/pcre/pcre.c +8304 -8304
  57. data/tests/c/pcre/pcre.h +193 -193
  58. data/tests/c/pcre/pcre.rb +14 -14
  59. data/tests/c/pcre/pcredemo.c +316 -316
  60. data/tests/c/pcre/pcregrep.c +642 -642
  61. data/tests/c/pcre/pcreposix.c +305 -305
  62. data/tests/c/pcre/pcreposix.h +88 -88
  63. data/tests/c/pcre/pcretest.c +1483 -1483
  64. data/tests/c/pcre/perltest +211 -211
  65. data/tests/c/pcre/printint.c +360 -360
  66. data/tests/c/pcre/study.c +472 -472
  67. data/tests/cpp/cpp_sources_glob/build.rb +7 -7
  68. data/tests/cpp/cpp_sources_glob/some/module/prj.rb +10 -10
  69. data/tests/cpp/cpp_sources_glob/tc_cpp_sources_glob.rb +18 -18
  70. data/tests/cpp/mswin_res_dll/build.rb +14 -14
  71. data/tests/cpp/mswin_res_dll/dll.cpp +17 -17
  72. data/tests/cpp/mswin_res_dll/dll.rb +29 -29
  73. data/tests/cpp/mswin_res_dll/dll.rc +48 -48
  74. data/tests/cpp/mswin_res_dll/h/dll.hpp +8 -8
  75. data/tests/cpp/mswin_res_dll/h/res.h +3 -3
  76. data/tests/cpp/mswin_res_dll/main.cpp +13 -13
  77. data/tests/cpp/mswin_res_dll/main.rb +19 -19
  78. data/tests/cpp/mswin_res_dll/tc_mswin_res_dll.rb +18 -18
  79. data/tests/cpp/mswin_res_exe/build.rb +23 -23
  80. data/tests/cpp/mswin_res_exe/h/res.h +3 -3
  81. data/tests/cpp/mswin_res_exe/main.cpp +17 -17
  82. data/tests/cpp/mswin_res_exe/main.rc +48 -48
  83. data/tests/cpp/mswin_res_exe/tc_mswin_res_exe.rb +18 -18
  84. data/tests/cpp/rucodegen.embedded/host_config.cpp +32 -32
  85. data/tests/cpp/rucodegen.embedded/impl/conn_params.cpp +7 -7
  86. data/tests/cpp/rucodegen.embedded/impl/conn_params.rb +14 -14
  87. data/tests/cpp/rucodegen.embedded/impl/h/conn_params.hpp +10 -10
  88. data/tests/cpp/rucodegen.embedded/prj.rb +16 -16
  89. data/tests/cpp/rucodegen.embedded/tc_rucodegen.rb +18 -18
  90. data/tests/cpp/rucodegen/host_config.cpp +20 -20
  91. data/tests/cpp/rucodegen/host_config.rb +14 -14
  92. data/tests/cpp/rucodegen/impl/conn_params.cpp +7 -7
  93. data/tests/cpp/rucodegen/impl/conn_params.rb +14 -14
  94. data/tests/cpp/rucodegen/impl/h/conn_params.hpp +10 -10
  95. data/tests/cpp/rucodegen/prj.rb +16 -16
  96. data/tests/cpp/rucodegen/tc_rucodegen.rb +18 -18
  97. data/tests/cpp/textfile_unittest/build.rb +8 -8
  98. data/tests/cpp/textfile_unittest/etalons/out_1.txt +1 -1
  99. data/tests/cpp/textfile_unittest/etalons/out_128.txt +128 -128
  100. data/tests/cpp/textfile_unittest/main.cpp +89 -89
  101. data/tests/cpp/textfile_unittest/prj.rb +8 -8
  102. data/tests/cpp/textfile_unittest/prj.ut.rb +18 -18
  103. data/tests/cpp/textfile_unittest/tc_textfile_unittest.rb +18 -18
  104. data/tests/cpp/toolset_name.rb +6 -6
  105. data/tests/cpp/vc_cleanup/prj_dll_no_implib.rb +10 -10
  106. data/tests/cpp/vc_cleanup/prj_dll_no_implib_simple_target_root.rb +11 -11
  107. data/tests/cpp/vc_cleanup/prj_dll_with_implib.rb +11 -11
  108. data/tests/cpp/vc_cleanup/prj_dll_with_implib_simple_target_root.rb +14 -14
  109. data/tests/cpp/vc_cleanup/prj_exe_no_implib.rb +10 -10
  110. data/tests/cpp/vc_cleanup/prj_exe_no_implib_simple_target_root.rb +11 -11
  111. data/tests/cpp/vc_cleanup/prj_lib.rb +10 -10
  112. data/tests/cpp/vc_cleanup/prj_lib_with_simple_target_root.rb +11 -11
  113. data/tests/cpp/vc_cleanup/tc_vc_cleanup.rb +23 -23
  114. data/tests/mxx_ru/binary_library/tc_binary_library.rb +57 -57
  115. data/tests/mxx_ru/binary_library/tc_binary_target_lib_methods.rb +114 -114
  116. data/tests/mxx_ru/change_default_value/ignoring_by_build_root/build.rb +8 -8
  117. data/tests/mxx_ru/change_default_value/ignoring_by_build_root/child_1.rb +5 -5
  118. data/tests/mxx_ru/change_default_value/ignoring_by_child_1/build.rb +7 -7
  119. data/tests/mxx_ru/change_default_value/ignoring_by_child_1/child_1.rb +5 -5
  120. data/tests/mxx_ru/change_default_value/ignoring_by_child_1/child_2.rb +5 -5
  121. data/tests/mxx_ru/change_default_value/ok/build.rb +8 -8
  122. data/tests/mxx_ru/change_default_value/ok/child_1.rb +8 -8
  123. data/tests/mxx_ru/lib_path/build.rb +8 -8
  124. data/tests/mxx_ru/lib_path/bye.rb +8 -8
  125. data/tests/mxx_ru/lib_path/hi.rb +8 -8
  126. data/tests/mxx_ru/lib_path/main.rb +12 -12
  127. data/tests/mxx_ru/lib_path/tc_lib_path.rb +18 -18
  128. data/tests/mxx_ru/obj_placements/tc_custom_subdir.rb +58 -58
  129. data/tests/mxx_ru/opt_lib_ext/build.rb +7 -7
  130. data/tests/mxx_ru/opt_lib_ext/hi.rb +7 -7
  131. data/tests/mxx_ru/opt_lib_ext/tc_opt_lib_ext.rb +18 -18
  132. data/tests/mxx_ru/opt_lib_ext/test-no-ext.rb +9 -9
  133. data/tests/mxx_ru/opt_lib_ext/test-with-ext.rb +13 -13
  134. data/tests/mxx_ru/plural_form_methods/tc.rb +72 -72
  135. data/tests/mxx_ru/qt_gen/tc_uic_result_subdir.rb +76 -76
  136. data/tests/mxx_ru/target_ext/prj_dll.rb +8 -8
  137. data/tests/mxx_ru/target_ext/prj_exe.rb +8 -8
  138. data/tests/mxx_ru/target_ext/prj_lib.rb +8 -8
  139. data/tests/mxx_ru/target_ext/tc_target_ext.rb +24 -24
  140. data/tests/mxx_ru/tc_makestyle_generator.rb +117 -117
  141. data/tests/mxx_ru/vc8/tc_actual_manifest.rb +230 -230
  142. data/tests/mxx_ru/vc8/tc_append_mt_commands.rb +104 -104
  143. data/tests/mxx_ru/vc8/tc_default_manifest.rb +17 -17
  144. data/tests/mxx_ru/vc8/tc_define_manifest.rb +173 -173
  145. data/tests/mxx_ru/vc8/tc_drop_default_manifest.rb +16 -16
  146. data/tests/mxx_ru/vc8/tc_invalid_params.rb +81 -81
  147. data/tests/mxx_ru/vc8/ts_vc8.rb +10 -10
  148. data/tests/qt/aclock/aclock.cpp +148 -148
  149. data/tests/qt/aclock/aclock.h +45 -45
  150. data/tests/qt/aclock/main.cpp +28 -28
  151. data/tests/qt/aclock/prj.rb +21 -21
  152. data/tests/qt/iconview/main.cpp +76 -76
  153. data/tests/qt/iconview/prj.rb +21 -21
  154. data/tests/qt/toplevel/main.cpp +9 -9
  155. data/tests/qt/toplevel/options.ui +587 -587
  156. data/tests/qt/toplevel/prj.rb +22 -22
  157. data/tests/test_with_compilation.rb +110 -110
  158. data/tests/unix/lib_linking_mode/a_shared.rb +7 -7
  159. data/tests/unix/lib_linking_mode/a_static.rb +7 -7
  160. data/tests/unix/lib_linking_mode/etalon/shared.txt +2 -2
  161. data/tests/unix/lib_linking_mode/etalon/static.txt +2 -2
  162. data/tests/unix/lib_linking_mode/main_conflict.rb +12 -12
  163. data/tests/unix/lib_linking_mode/main_conflict_2.rb +11 -11
  164. data/tests/unix/lib_linking_mode/main_shared.rb +9 -9
  165. data/tests/unix/lib_linking_mode/main_shared.ut.rb +11 -11
  166. data/tests/unix/lib_linking_mode/main_shared_2.rb +10 -10
  167. data/tests/unix/lib_linking_mode/main_shared_2.ut.rb +11 -11
  168. data/tests/unix/lib_linking_mode/main_static.rb +9 -9
  169. data/tests/unix/lib_linking_mode/main_static.ut.rb +11 -11
  170. data/tests/unix/lib_linking_mode/main_static_2.rb +10 -10
  171. data/tests/unix/lib_linking_mode/main_static_2.ut.rb +11 -11
  172. data/tests/unix/lib_linking_mode/tc_conflicted_build.rb +18 -18
  173. data/tests/unix/lib_linking_mode/tc_normal_build.rb +18 -18
  174. data/tests/unix/lib_order/a.cpp +4 -0
  175. data/tests/unix/lib_order/a.hpp +1 -0
  176. data/tests/unix/lib_order/a.rb +8 -0
  177. data/tests/unix/lib_order/b.cpp +10 -0
  178. data/tests/unix/lib_order/b.hpp +1 -0
  179. data/tests/unix/lib_order/b.rb +8 -0
  180. data/tests/unix/lib_order/build.rb +9 -0
  181. data/tests/unix/lib_order/c.cpp +12 -0
  182. data/tests/unix/lib_order/c.hpp +2 -0
  183. data/tests/unix/lib_order/c.rb +8 -0
  184. data/tests/unix/lib_order/d.cpp +7 -0
  185. data/tests/unix/lib_order/d.hpp +1 -0
  186. data/tests/unix/lib_order/d.rb +8 -0
  187. data/tests/unix/lib_order/main.cpp +7 -0
  188. data/tests/unix/lib_order/main.rb +14 -0
  189. data/tests/unix/lib_order/tc_normal_build.rb +16 -0
  190. metadata +342 -319
@@ -1,9 +1,9 @@
1
- require 'mxx_ru/cpp'
2
-
3
- Mxx_ru::Cpp::exe_target {
4
- target 'main_static'
5
- cpp_source 'main_static.cpp'
6
-
7
- lib_static( 'a', '.' )
8
- }
9
-
1
+ require 'mxx_ru/cpp'
2
+
3
+ Mxx_ru::Cpp::exe_target {
4
+ target 'main_static'
5
+ cpp_source 'main_static.cpp'
6
+
7
+ lib_static( 'a', '.' )
8
+ }
9
+
@@ -1,11 +1,11 @@
1
- require 'mxx_ru/cpp'
2
- require 'mxx_ru/textfile_unittest'
3
-
4
- Mxx_ru::setup_target( Mxx_ru::Textfile_unittest_target.new(
5
- 'main_static.ut.rb',
6
- 'main_static.rb' ) {
7
-
8
- launch ' > out/static.txt',
9
- [ pair( 'out/static.txt', 'etalon/static.txt' ) ]
10
- })
11
-
1
+ require 'mxx_ru/cpp'
2
+ require 'mxx_ru/textfile_unittest'
3
+
4
+ Mxx_ru::setup_target( Mxx_ru::Textfile_unittest_target.new(
5
+ 'main_static.ut.rb',
6
+ 'main_static.rb' ) {
7
+
8
+ launch ' > out/static.txt',
9
+ [ pair( 'out/static.txt', 'etalon/static.txt' ) ]
10
+ })
11
+
@@ -1,10 +1,10 @@
1
- require 'mxx_ru/cpp'
2
-
3
- Mxx_ru::Cpp::exe_target {
4
- target 'main_static_2'
5
-
6
- required_prj 'a_static.rb'
7
-
8
- cpp_source 'main_static_2.cpp'
9
- }
10
-
1
+ require 'mxx_ru/cpp'
2
+
3
+ Mxx_ru::Cpp::exe_target {
4
+ target 'main_static_2'
5
+
6
+ required_prj 'a_static.rb'
7
+
8
+ cpp_source 'main_static_2.cpp'
9
+ }
10
+
@@ -1,11 +1,11 @@
1
- require 'mxx_ru/cpp'
2
- require 'mxx_ru/textfile_unittest'
3
-
4
- Mxx_ru::setup_target( Mxx_ru::Textfile_unittest_target.new(
5
- 'main_static_2.ut.rb',
6
- 'main_static_2.rb' ) {
7
-
8
- launch ' > out/static.txt',
9
- [ pair( 'out/static.txt', 'etalon/static.txt' ) ]
10
- })
11
-
1
+ require 'mxx_ru/cpp'
2
+ require 'mxx_ru/textfile_unittest'
3
+
4
+ Mxx_ru::setup_target( Mxx_ru::Textfile_unittest_target.new(
5
+ 'main_static_2.ut.rb',
6
+ 'main_static_2.rb' ) {
7
+
8
+ launch ' > out/static.txt',
9
+ [ pair( 'out/static.txt', 'etalon/static.txt' ) ]
10
+ })
11
+
@@ -1,18 +1,18 @@
1
- require 'test/unit'
2
-
3
- require File.dirname( __FILE__ ) + '/../../test_with_compilation'
4
-
5
- class TC_ConflictedBuild < Test::Unit::TestCase
6
- include TestWithCompilation
7
-
8
- test_path 'tests/unix/lib_linking_mode'
9
-
10
- test_case :explicit_lib_specification do
11
- build_failure 'main_conflict.rb'
12
- end
13
-
14
- test_case :required_prj_specification do
15
- build_failure 'main_conflict_2.rb'
16
- end
17
- end
18
-
1
+ require 'test/unit'
2
+
3
+ require File.dirname( __FILE__ ) + '/../../test_with_compilation'
4
+
5
+ class TC_ConflictedBuild < Test::Unit::TestCase
6
+ include TestWithCompilation
7
+
8
+ test_path 'tests/unix/lib_linking_mode'
9
+
10
+ test_case :explicit_lib_specification do
11
+ build_failure 'main_conflict.rb'
12
+ end
13
+
14
+ test_case :required_prj_specification do
15
+ build_failure 'main_conflict_2.rb'
16
+ end
17
+ end
18
+
@@ -1,18 +1,18 @@
1
- require 'test/unit'
2
-
3
- require File.dirname( __FILE__ ) + '/../../test_with_compilation'
4
-
5
- class TC_NormalBuild < Test::Unit::TestCase
6
- include TestWithCompilation
7
-
8
- test_path 'tests/unix/lib_linking_mode'
9
-
10
- test_case :successful_build do
11
- tests = [ 'a_static.rb', 'a_shared.rb',
12
- 'main_static.ut.rb', 'main_shared.ut.rb',
13
- 'main_static_2.ut.rb', 'main_shared_2.ut.rb' ]
14
- build *tests
15
- clean *tests
16
- end
17
- end
18
-
1
+ require 'test/unit'
2
+
3
+ require File.dirname( __FILE__ ) + '/../../test_with_compilation'
4
+
5
+ class TC_NormalBuild < Test::Unit::TestCase
6
+ include TestWithCompilation
7
+
8
+ test_path 'tests/unix/lib_linking_mode'
9
+
10
+ test_case :successful_build do
11
+ tests = [ 'a_static.rb', 'a_shared.rb',
12
+ 'main_static.ut.rb', 'main_shared.ut.rb',
13
+ 'main_static_2.ut.rb', 'main_shared_2.ut.rb' ]
14
+ build *tests
15
+ clean *tests
16
+ end
17
+ end
18
+
@@ -0,0 +1,4 @@
1
+ #include <iostream>
2
+
3
+ void a() { std::cout << "a()" << std::endl; }
4
+
@@ -0,0 +1 @@
1
+ void a();
@@ -0,0 +1,8 @@
1
+ require 'mxx_ru/cpp'
2
+
3
+ MxxRu::Cpp::lib_target {
4
+ target 'A'
5
+
6
+ cpp_source 'a.cpp'
7
+ }
8
+
@@ -0,0 +1,10 @@
1
+ #include <iostream>
2
+
3
+ #include "a.hpp"
4
+
5
+ void b() {
6
+ std::cout << "b() {\n";
7
+ a();
8
+ std::cout << "b() }" << std::endl;
9
+ }
10
+
@@ -0,0 +1 @@
1
+ void b();
@@ -0,0 +1,8 @@
1
+ require 'mxx_ru/cpp'
2
+
3
+ MxxRu::Cpp::lib_target {
4
+ target 'B'
5
+
6
+ cpp_source 'b.cpp'
7
+ }
8
+
@@ -0,0 +1,9 @@
1
+ require 'mxx_ru/cpp'
2
+
3
+ MxxRu::Cpp::composite_target( MxxRu::BUILD_ROOT ) {
4
+ required_prj 'a.rb'
5
+ required_prj 'b.rb'
6
+ required_prj 'c.rb'
7
+ required_prj 'd.rb'
8
+ required_prj 'main.rb'
9
+ }
@@ -0,0 +1,12 @@
1
+ #include <iostream>
2
+
3
+ #include "a.hpp"
4
+ #include "b.hpp"
5
+
6
+ void c() {
7
+ std::cout << "c() {" << std::endl;
8
+ a();
9
+ b();
10
+ std::cout << "c() }" << std::endl;
11
+ }
12
+
@@ -0,0 +1,2 @@
1
+ void c();
2
+
@@ -0,0 +1,8 @@
1
+ require 'mxx_ru/cpp'
2
+
3
+ MxxRu::Cpp::lib_target {
4
+ target 'C'
5
+
6
+ cpp_source 'c.cpp'
7
+ }
8
+
@@ -0,0 +1,7 @@
1
+ #include <iostream>
2
+
3
+ void d() {
4
+ std::cout << "d() {" << std::endl;
5
+ std::cout << "d() }" << std::endl;
6
+ }
7
+
@@ -0,0 +1 @@
1
+ void d();
@@ -0,0 +1,8 @@
1
+ require 'mxx_ru/cpp'
2
+
3
+ MxxRu::Cpp::lib_target {
4
+ target 'D'
5
+
6
+ cpp_source 'd.cpp'
7
+ }
8
+
@@ -0,0 +1,7 @@
1
+ #include "c.hpp"
2
+ #include "d.hpp"
3
+
4
+ int main() {
5
+ c();
6
+ d();
7
+ }
@@ -0,0 +1,14 @@
1
+ require 'mxx_ru/cpp'
2
+
3
+ MxxRu::Cpp::exe_target {
4
+ target 'main'
5
+
6
+ lib_path '.'
7
+ lib_static 'A'
8
+ lib_static 'B'
9
+ lib 'C'
10
+ lib_static 'D'
11
+
12
+ cpp_source 'main.cpp'
13
+ }
14
+
@@ -0,0 +1,16 @@
1
+ require 'test/unit'
2
+
3
+ require File.dirname( __FILE__ ) + '/../../test_with_compilation'
4
+
5
+ class TC_NormalBuild < Test::Unit::TestCase
6
+ include TestWithCompilation
7
+
8
+ test_path 'tests/unix/lib_order'
9
+
10
+ test_case :successful_build do
11
+ tests = [ 'build.rb' ]
12
+ build *tests
13
+ clean *tests
14
+ end
15
+ end
16
+
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.8.10
2
+ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: Mxx_ru
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.3.0
7
- date: 2006-05-30
6
+ version: 1.3.1
7
+ date: 2006-06-09 00:00:00 +04:00
8
8
  summary: Mxx_ru (Make++ on Ruby) is a cross-platform build tool
9
9
  require_paths:
10
- - lib
10
+ - lib
11
11
  email: eao197@yahoo.com
12
12
  homepage: http://www.rubyforge.com/projects/mxx-ru
13
13
  rubyforge_project:
@@ -18,328 +18,351 @@ bindir: bin
18
18
  has_rdoc: true
19
19
  required_ruby_version: !ruby/object:Gem::Version::Requirement
20
20
  requirements:
21
- -
22
- - ">"
23
- - !ruby/object:Gem::Version
24
- version: 0.0.0
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
25
24
  version:
26
25
  platform: ruby
26
+ signing_key:
27
+ cert_chain:
27
28
  authors:
28
- - The Mxx_ru Project
29
+ - The Mxx_ru Project
29
30
  files:
30
- - tests/c
31
- - tests/cpp
32
- - tests/mxx_ru
33
- - tests/qt
34
- - tests/test_with_compilation.rb
35
- - tests/unix
36
- - tests/c/pcre
37
- - tests/c/pcre/chartables.c
38
- - tests/c/pcre/config.h
39
- - tests/c/pcre/dftables.c
40
- - tests/c/pcre/get.c
41
- - tests/c/pcre/internal.h
42
- - tests/c/pcre/lib
43
- - tests/c/pcre/maketables.c
44
- - tests/c/pcre/o
45
- - tests/c/pcre/pcre.c
46
- - tests/c/pcre/pcre.h
47
- - tests/c/pcre/pcre.rb
48
- - tests/c/pcre/pcredemo.c
49
- - tests/c/pcre/pcregrep.c
50
- - tests/c/pcre/pcreposix.c
51
- - tests/c/pcre/pcreposix.h
52
- - tests/c/pcre/pcretest.c
53
- - tests/c/pcre/perltest
54
- - tests/c/pcre/printint.c
55
- - tests/c/pcre/study.c
56
- - tests/cpp/cpp_sources_glob
57
- - tests/cpp/mswin_res_dll
58
- - tests/cpp/mswin_res_exe
59
- - tests/cpp/o
60
- - tests/cpp/rucodegen
61
- - tests/cpp/rucodegen.embedded
62
- - tests/cpp/textfile_unittest
63
- - tests/cpp/toolset_name.rb
64
- - tests/cpp/vc_cleanup
65
- - tests/cpp/cpp_sources_glob/build.rb
66
- - tests/cpp/cpp_sources_glob/some
67
- - tests/cpp/cpp_sources_glob/tc_cpp_sources_glob.rb
68
- - tests/cpp/cpp_sources_glob/some/module
69
- - tests/cpp/cpp_sources_glob/some/module/1
70
- - tests/cpp/cpp_sources_glob/some/module/2
71
- - tests/cpp/cpp_sources_glob/some/module/3
72
- - tests/cpp/cpp_sources_glob/some/module/4
73
- - tests/cpp/cpp_sources_glob/some/module/funcs.hpp
74
- - tests/cpp/cpp_sources_glob/some/module/main.cpp
75
- - tests/cpp/cpp_sources_glob/some/module/prj.rb
76
- - tests/cpp/cpp_sources_glob/some/module/1/f1.cpp
77
- - tests/cpp/cpp_sources_glob/some/module/2/f2.cpp
78
- - tests/cpp/cpp_sources_glob/some/module/3/f3.cpp
79
- - tests/cpp/cpp_sources_glob/some/module/4/f4.cpp
80
- - tests/cpp/mswin_res_dll/build.rb
81
- - tests/cpp/mswin_res_dll/dll.cpp
82
- - tests/cpp/mswin_res_dll/dll.rb
83
- - tests/cpp/mswin_res_dll/dll.rc
84
- - tests/cpp/mswin_res_dll/h
85
- - tests/cpp/mswin_res_dll/main.cpp
86
- - tests/cpp/mswin_res_dll/main.rb
87
- - tests/cpp/mswin_res_dll/o
88
- - tests/cpp/mswin_res_dll/res
89
- - tests/cpp/mswin_res_dll/tc_mswin_res_dll.rb
90
- - tests/cpp/mswin_res_dll/h/dll.hpp
91
- - tests/cpp/mswin_res_dll/h/res.h
92
- - tests/cpp/mswin_res_dll/res/tree_fol.bmp
93
- - tests/cpp/mswin_res_dll/res/tree_state_1.bmp
94
- - tests/cpp/mswin_res_dll/res/tree_state_2.bmp
95
- - tests/cpp/mswin_res_exe/build.rb
96
- - tests/cpp/mswin_res_exe/h
97
- - tests/cpp/mswin_res_exe/main.cpp
98
- - tests/cpp/mswin_res_exe/main.rc
99
- - tests/cpp/mswin_res_exe/o
100
- - tests/cpp/mswin_res_exe/res
101
- - tests/cpp/mswin_res_exe/tc_mswin_res_exe.rb
102
- - tests/cpp/mswin_res_exe/h/res.h
103
- - tests/cpp/mswin_res_exe/res/tree_fol.bmp
104
- - tests/cpp/mswin_res_exe/res/tree_state_1.bmp
105
- - tests/cpp/mswin_res_exe/res/tree_state_2.bmp
106
- - tests/cpp/rucodegen/h
107
- - tests/cpp/rucodegen/host_config.cpp
108
- - tests/cpp/rucodegen/host_config.rb
109
- - tests/cpp/rucodegen/impl
110
- - tests/cpp/rucodegen/o
111
- - tests/cpp/rucodegen/prj.rb
112
- - tests/cpp/rucodegen/tc_rucodegen.rb
113
- - tests/cpp/rucodegen/impl/conn_params.cpp
114
- - tests/cpp/rucodegen/impl/conn_params.rb
115
- - tests/cpp/rucodegen/impl/h
116
- - tests/cpp/rucodegen/impl/o
117
- - tests/cpp/rucodegen/impl/h/conn_params.hpp
118
- - tests/cpp/rucodegen.embedded/h
119
- - tests/cpp/rucodegen.embedded/host_config.cpp
120
- - tests/cpp/rucodegen.embedded/impl
121
- - tests/cpp/rucodegen.embedded/o
122
- - tests/cpp/rucodegen.embedded/prj.rb
123
- - tests/cpp/rucodegen.embedded/tc_rucodegen.rb
124
- - tests/cpp/rucodegen.embedded/impl/conn_params.cpp
125
- - tests/cpp/rucodegen.embedded/impl/conn_params.rb
126
- - tests/cpp/rucodegen.embedded/impl/h
127
- - tests/cpp/rucodegen.embedded/impl/o
128
- - tests/cpp/rucodegen.embedded/impl/h/conn_params.hpp
129
- - tests/cpp/textfile_unittest/build.rb
130
- - tests/cpp/textfile_unittest/etalons
131
- - tests/cpp/textfile_unittest/main.cpp
132
- - tests/cpp/textfile_unittest/o
133
- - tests/cpp/textfile_unittest/prj.rb
134
- - tests/cpp/textfile_unittest/prj.ut.rb
135
- - tests/cpp/textfile_unittest/tc_textfile_unittest.rb
136
- - tests/cpp/textfile_unittest/etalons/out_0.txt
137
- - tests/cpp/textfile_unittest/etalons/out_1.txt
138
- - tests/cpp/textfile_unittest/etalons/out_128.txt
139
- - tests/cpp/vc_cleanup/dll_hi.cpp
140
- - tests/cpp/vc_cleanup/exe_hi.cpp
141
- - tests/cpp/vc_cleanup/lib
142
- - tests/cpp/vc_cleanup/lib_hi.cpp
143
- - tests/cpp/vc_cleanup/o
144
- - tests/cpp/vc_cleanup/prj_dll_no_implib.rb
145
- - tests/cpp/vc_cleanup/prj_dll_no_implib_simple_target_root.rb
146
- - tests/cpp/vc_cleanup/prj_dll_with_implib.rb
147
- - tests/cpp/vc_cleanup/prj_dll_with_implib_simple_target_root.rb
148
- - tests/cpp/vc_cleanup/prj_exe_no_implib.rb
149
- - tests/cpp/vc_cleanup/prj_exe_no_implib_simple_target_root.rb
150
- - tests/cpp/vc_cleanup/prj_lib.rb
151
- - tests/cpp/vc_cleanup/prj_lib_with_simple_target_root.rb
152
- - tests/cpp/vc_cleanup/simple_target_root
153
- - tests/cpp/vc_cleanup/tc_vc_cleanup.rb
154
- - tests/cpp/vc_cleanup/lib/simple_target_root
155
- - tests/mxx_ru/binary_library
156
- - tests/mxx_ru/change_default_value
157
- - tests/mxx_ru/lib_path
158
- - tests/mxx_ru/obj_placements
159
- - tests/mxx_ru/opt_lib_ext
160
- - tests/mxx_ru/plural_form_methods
161
- - tests/mxx_ru/qt_gen
162
- - tests/mxx_ru/target_ext
163
- - tests/mxx_ru/tc_makestyle_generator.rb
164
- - tests/mxx_ru/vc8
165
- - tests/mxx_ru/binary_library/tc_binary_library.rb
166
- - tests/mxx_ru/binary_library/tc_binary_target_lib_methods.rb
167
- - tests/mxx_ru/change_default_value/ignoring_by_build_root
168
- - tests/mxx_ru/change_default_value/ignoring_by_child_1
169
- - tests/mxx_ru/change_default_value/ok
170
- - tests/mxx_ru/change_default_value/ignoring_by_build_root/build.rb
171
- - tests/mxx_ru/change_default_value/ignoring_by_build_root/child_1.rb
172
- - tests/mxx_ru/change_default_value/ignoring_by_child_1/build.rb
173
- - tests/mxx_ru/change_default_value/ignoring_by_child_1/child_1.rb
174
- - tests/mxx_ru/change_default_value/ignoring_by_child_1/child_2.rb
175
- - tests/mxx_ru/change_default_value/ok/build.rb
176
- - tests/mxx_ru/change_default_value/ok/child_1.rb
177
- - tests/mxx_ru/lib_path/build.rb
178
- - tests/mxx_ru/lib_path/bye.c
179
- - tests/mxx_ru/lib_path/bye.rb
180
- - tests/mxx_ru/lib_path/bye_lib
181
- - tests/mxx_ru/lib_path/hi.c
182
- - tests/mxx_ru/lib_path/hi.rb
183
- - tests/mxx_ru/lib_path/hi_lib
184
- - tests/mxx_ru/lib_path/main.c
185
- - tests/mxx_ru/lib_path/main.rb
186
- - tests/mxx_ru/lib_path/tc_lib_path.rb
187
- - tests/mxx_ru/obj_placements/tc_custom_subdir.rb
188
- - tests/mxx_ru/opt_lib_ext/build.rb
189
- - tests/mxx_ru/opt_lib_ext/hi.c
190
- - tests/mxx_ru/opt_lib_ext/hi.h
191
- - tests/mxx_ru/opt_lib_ext/hi.rb
192
- - tests/mxx_ru/opt_lib_ext/main.c
193
- - tests/mxx_ru/opt_lib_ext/tc_opt_lib_ext.rb
194
- - tests/mxx_ru/opt_lib_ext/test-no-ext.rb
195
- - tests/mxx_ru/opt_lib_ext/test-with-ext.rb
196
- - tests/mxx_ru/plural_form_methods/tc.rb
197
- - tests/mxx_ru/qt_gen/tc_uic_result_subdir.rb
198
- - tests/mxx_ru/target_ext/dll_hi.cpp
199
- - tests/mxx_ru/target_ext/exe_hi.cpp
200
- - tests/mxx_ru/target_ext/lib_hi.cpp
201
- - tests/mxx_ru/target_ext/prj_dll.rb
202
- - tests/mxx_ru/target_ext/prj_exe.rb
203
- - tests/mxx_ru/target_ext/prj_lib.rb
204
- - tests/mxx_ru/target_ext/tc_target_ext.rb
205
- - tests/mxx_ru/vc8/tc_actual_manifest.rb
206
- - tests/mxx_ru/vc8/tc_append_mt_commands.rb
207
- - tests/mxx_ru/vc8/tc_default_manifest.rb
208
- - tests/mxx_ru/vc8/tc_define_manifest.rb
209
- - tests/mxx_ru/vc8/tc_drop_default_manifest.rb
210
- - tests/mxx_ru/vc8/tc_invalid_params.rb
211
- - tests/mxx_ru/vc8/ts_vc8.rb
212
- - tests/qt/aclock
213
- - tests/qt/iconview
214
- - tests/qt/toplevel
215
- - tests/qt/aclock/aclock.cpp
216
- - tests/qt/aclock/aclock.h
217
- - tests/qt/aclock/main.cpp
218
- - tests/qt/aclock/prj.rb
219
- - tests/qt/iconview/main.cpp
220
- - tests/qt/iconview/prj.rb
221
- - tests/qt/toplevel/main.cpp
222
- - tests/qt/toplevel/options.ui
223
- - tests/qt/toplevel/prj.rb
224
- - tests/unix/lib_linking_mode
225
- - tests/unix/lib_linking_mode/a.hpp
226
- - tests/unix/lib_linking_mode/a_shared.cpp
227
- - tests/unix/lib_linking_mode/a_shared.rb
228
- - tests/unix/lib_linking_mode/a_static.cpp
229
- - tests/unix/lib_linking_mode/a_static.rb
230
- - tests/unix/lib_linking_mode/etalon
231
- - tests/unix/lib_linking_mode/main.impl.cpp
232
- - tests/unix/lib_linking_mode/main_conflict.cpp
233
- - tests/unix/lib_linking_mode/main_conflict.rb
234
- - tests/unix/lib_linking_mode/main_conflict_2.rb
235
- - tests/unix/lib_linking_mode/main_shared.cpp
236
- - tests/unix/lib_linking_mode/main_shared.rb
237
- - tests/unix/lib_linking_mode/main_shared.ut.rb
238
- - tests/unix/lib_linking_mode/main_shared_2.cpp
239
- - tests/unix/lib_linking_mode/main_shared_2.rb
240
- - tests/unix/lib_linking_mode/main_shared_2.ut.rb
241
- - tests/unix/lib_linking_mode/main_static.cpp
242
- - tests/unix/lib_linking_mode/main_static.rb
243
- - tests/unix/lib_linking_mode/main_static.ut.rb
244
- - tests/unix/lib_linking_mode/main_static_2.cpp
245
- - tests/unix/lib_linking_mode/main_static_2.rb
246
- - tests/unix/lib_linking_mode/main_static_2.ut.rb
247
- - tests/unix/lib_linking_mode/o
248
- - tests/unix/lib_linking_mode/out
249
- - tests/unix/lib_linking_mode/tc_conflicted_build.rb
250
- - tests/unix/lib_linking_mode/tc_normal_build.rb
251
- - tests/unix/lib_linking_mode/etalon/shared.txt
252
- - tests/unix/lib_linking_mode/etalon/static.txt
253
- - lib/mxx_ru
254
- - lib/mxx_ru/abstract_target.rb
255
- - lib/mxx_ru/binary_library.rb
256
- - lib/mxx_ru/binary_target.rb
257
- - lib/mxx_ru/binary_unittest.rb
258
- - lib/mxx_ru/compat.rb
259
- - lib/mxx_ru/cpp
260
- - lib/mxx_ru/cpp.rb
261
- - lib/mxx_ru/ex.rb
262
- - lib/mxx_ru/makestyle_generator.rb
263
- - lib/mxx_ru/textfile_unittest.rb
264
- - lib/mxx_ru/util.rb
265
- - lib/mxx_ru/cpp/analyzer.rb
266
- - lib/mxx_ru/cpp/composite.rb
267
- - lib/mxx_ru/cpp/detect_toolset.rb
268
- - lib/mxx_ru/cpp/mode.rb
269
- - lib/mxx_ru/cpp/obj_placement.rb
270
- - lib/mxx_ru/cpp/obj_placements
271
- - lib/mxx_ru/cpp/qt.rb
272
- - lib/mxx_ru/cpp/rucodegen.rb
273
- - lib/mxx_ru/cpp/source_file.rb
274
- - lib/mxx_ru/cpp/target.rb
275
- - lib/mxx_ru/cpp/toolset.rb
276
- - lib/mxx_ru/cpp/toolsets
277
- - lib/mxx_ru/cpp/obj_placements/custom_subdir.rb
278
- - lib/mxx_ru/cpp/toolsets/bcc_win32_5.rb
279
- - lib/mxx_ru/cpp/toolsets/bcc_win32_family.rb
280
- - lib/mxx_ru/cpp/toolsets/c89_etk_nsk.rb
281
- - lib/mxx_ru/cpp/toolsets/c89_nsk.rb
282
- - lib/mxx_ru/cpp/toolsets/c89_nsk_family.rb
283
- - lib/mxx_ru/cpp/toolsets/gcc_cygwin.rb
284
- - lib/mxx_ru/cpp/toolsets/gcc_family.rb
285
- - lib/mxx_ru/cpp/toolsets/gcc_linux.rb
286
- - lib/mxx_ru/cpp/toolsets/gcc_mingw.rb
287
- - lib/mxx_ru/cpp/toolsets/gcc_sparc_solaris.rb
288
- - lib/mxx_ru/cpp/toolsets/gcc_unix_family.rb
289
- - lib/mxx_ru/cpp/toolsets/vc7.rb
290
- - lib/mxx_ru/cpp/toolsets/vc8.rb
291
- - lib/mxx_ru/cpp/toolsets/vc_family.rb
292
- - examples/exe_and_lib
293
- - examples/exe_dll_lib
294
- - examples/exe_dll_lib_2
295
- - examples/simple_exe
296
- - examples/exe_and_lib/main.cpp
297
- - examples/exe_and_lib/prj.rb
298
- - examples/exe_and_lib/say.cpp
299
- - examples/exe_and_lib/say.hpp
300
- - examples/exe_and_lib/say.rb
301
- - examples/exe_dll_lib/inout.cpp
302
- - examples/exe_dll_lib/inout.hpp
303
- - examples/exe_dll_lib/inout.rb
304
- - examples/exe_dll_lib/main.cpp
305
- - examples/exe_dll_lib/prj.rb
306
- - examples/exe_dll_lib/say.cpp
307
- - examples/exe_dll_lib/say.hpp
308
- - examples/exe_dll_lib/say.rb
309
- - examples/exe_dll_lib_2/build.rb
310
- - examples/exe_dll_lib_2/inout
311
- - examples/exe_dll_lib_2/lib
312
- - examples/exe_dll_lib_2/main
313
- - examples/exe_dll_lib_2/say
314
- - examples/exe_dll_lib_2/inout/inout.cpp
315
- - examples/exe_dll_lib_2/inout/inout.hpp
316
- - examples/exe_dll_lib_2/inout/o
317
- - examples/exe_dll_lib_2/inout/prj.rb
318
- - examples/exe_dll_lib_2/main/main.cpp
319
- - examples/exe_dll_lib_2/main/o
320
- - examples/exe_dll_lib_2/main/prj.rb
321
- - examples/exe_dll_lib_2/say/o
322
- - examples/exe_dll_lib_2/say/prj.rb
323
- - examples/exe_dll_lib_2/say/say.cpp
324
- - examples/exe_dll_lib_2/say/say.hpp
325
- - examples/simple_exe/main.cpp
326
- - examples/simple_exe/prj.rb
327
- - THANKS
328
- - README
329
- - Rakefile
330
- - COPYING
331
- - NEWS
31
+ - tests/c
32
+ - tests/qt
33
+ - tests/cpp
34
+ - tests/unix
35
+ - tests/mxx_ru
36
+ - tests/test_with_compilation.rb
37
+ - tests/c/pcre
38
+ - tests/c/pcre/o
39
+ - tests/c/pcre/lib
40
+ - tests/c/pcre/internal.h
41
+ - tests/c/pcre/pcreposix.c
42
+ - tests/c/pcre/pcreposix.h
43
+ - tests/c/pcre/get.c
44
+ - tests/c/pcre/pcredemo.c
45
+ - tests/c/pcre/pcregrep.c
46
+ - tests/c/pcre/maketables.c
47
+ - tests/c/pcre/chartables.c
48
+ - tests/c/pcre/pcretest.c
49
+ - tests/c/pcre/dftables.c
50
+ - tests/c/pcre/study.c
51
+ - tests/c/pcre/config.h
52
+ - tests/c/pcre/pcre.c
53
+ - tests/c/pcre/pcre.h
54
+ - tests/c/pcre/pcre.rb
55
+ - tests/c/pcre/printint.c
56
+ - tests/c/pcre/perltest
57
+ - tests/qt/iconview
58
+ - tests/qt/aclock
59
+ - tests/qt/toplevel
60
+ - tests/qt/iconview/main.cpp
61
+ - tests/qt/iconview/prj.rb
62
+ - tests/qt/aclock/aclock.cpp
63
+ - tests/qt/aclock/main.cpp
64
+ - tests/qt/aclock/aclock.h
65
+ - tests/qt/aclock/prj.rb
66
+ - tests/qt/toplevel/options.ui
67
+ - tests/qt/toplevel/main.cpp
68
+ - tests/qt/toplevel/prj.rb
69
+ - tests/cpp/o
70
+ - tests/cpp/rucodegen
71
+ - tests/cpp/cpp_sources_glob
72
+ - tests/cpp/mswin_res_dll
73
+ - tests/cpp/mswin_res_exe
74
+ - tests/cpp/textfile_unittest
75
+ - tests/cpp/toolset_name.rb
76
+ - tests/cpp/vc_cleanup
77
+ - tests/cpp/rucodegen.embedded
78
+ - tests/cpp/rucodegen/h
79
+ - tests/cpp/rucodegen/o
80
+ - tests/cpp/rucodegen/impl
81
+ - tests/cpp/rucodegen/host_config.cpp
82
+ - tests/cpp/rucodegen/prj.rb
83
+ - tests/cpp/rucodegen/tc_rucodegen.rb
84
+ - tests/cpp/rucodegen/host_config.rb
85
+ - tests/cpp/rucodegen/impl/h
86
+ - tests/cpp/rucodegen/impl/o
87
+ - tests/cpp/rucodegen/impl/conn_params.cpp
88
+ - tests/cpp/rucodegen/impl/conn_params.rb
89
+ - tests/cpp/rucodegen/impl/h/conn_params.hpp
90
+ - tests/cpp/cpp_sources_glob/some
91
+ - tests/cpp/cpp_sources_glob/tc_cpp_sources_glob.rb
92
+ - tests/cpp/cpp_sources_glob/build.rb
93
+ - tests/cpp/cpp_sources_glob/some/module
94
+ - tests/cpp/cpp_sources_glob/some/module/1
95
+ - tests/cpp/cpp_sources_glob/some/module/2
96
+ - tests/cpp/cpp_sources_glob/some/module/3
97
+ - tests/cpp/cpp_sources_glob/some/module/4
98
+ - tests/cpp/cpp_sources_glob/some/module/main.cpp
99
+ - tests/cpp/cpp_sources_glob/some/module/funcs.hpp
100
+ - tests/cpp/cpp_sources_glob/some/module/prj.rb
101
+ - tests/cpp/cpp_sources_glob/some/module/1/f1.cpp
102
+ - tests/cpp/cpp_sources_glob/some/module/2/f2.cpp
103
+ - tests/cpp/cpp_sources_glob/some/module/3/f3.cpp
104
+ - tests/cpp/cpp_sources_glob/some/module/4/f4.cpp
105
+ - tests/cpp/mswin_res_dll/h
106
+ - tests/cpp/mswin_res_dll/o
107
+ - tests/cpp/mswin_res_dll/res
108
+ - tests/cpp/mswin_res_dll/dll.cpp
109
+ - tests/cpp/mswin_res_dll/main.rb
110
+ - tests/cpp/mswin_res_dll/main.cpp
111
+ - tests/cpp/mswin_res_dll/dll.rb
112
+ - tests/cpp/mswin_res_dll/dll.rc
113
+ - tests/cpp/mswin_res_dll/build.rb
114
+ - tests/cpp/mswin_res_dll/tc_mswin_res_dll.rb
115
+ - tests/cpp/mswin_res_dll/h/dll.hpp
116
+ - tests/cpp/mswin_res_dll/h/res.h
117
+ - tests/cpp/mswin_res_dll/res/tree_fol.bmp
118
+ - tests/cpp/mswin_res_dll/res/tree_state_1.bmp
119
+ - tests/cpp/mswin_res_dll/res/tree_state_2.bmp
120
+ - tests/cpp/mswin_res_exe/h
121
+ - tests/cpp/mswin_res_exe/o
122
+ - tests/cpp/mswin_res_exe/res
123
+ - tests/cpp/mswin_res_exe/main.rc
124
+ - tests/cpp/mswin_res_exe/main.cpp
125
+ - tests/cpp/mswin_res_exe/build.rb
126
+ - tests/cpp/mswin_res_exe/tc_mswin_res_exe.rb
127
+ - tests/cpp/mswin_res_exe/h/res.h
128
+ - tests/cpp/mswin_res_exe/res/tree_fol.bmp
129
+ - tests/cpp/mswin_res_exe/res/tree_state_1.bmp
130
+ - tests/cpp/mswin_res_exe/res/tree_state_2.bmp
131
+ - tests/cpp/textfile_unittest/o
132
+ - tests/cpp/textfile_unittest/prj.ut.rb
133
+ - tests/cpp/textfile_unittest/main.cpp
134
+ - tests/cpp/textfile_unittest/etalons
135
+ - tests/cpp/textfile_unittest/tc_textfile_unittest.rb
136
+ - tests/cpp/textfile_unittest/prj.rb
137
+ - tests/cpp/textfile_unittest/build.rb
138
+ - tests/cpp/textfile_unittest/etalons/out_128.txt
139
+ - tests/cpp/textfile_unittest/etalons/out_0.txt
140
+ - tests/cpp/textfile_unittest/etalons/out_1.txt
141
+ - tests/cpp/vc_cleanup/o
142
+ - tests/cpp/vc_cleanup/lib
143
+ - tests/cpp/vc_cleanup/prj_exe_no_implib.rb
144
+ - tests/cpp/vc_cleanup/lib_hi.cpp
145
+ - tests/cpp/vc_cleanup/prj_lib.rb
146
+ - tests/cpp/vc_cleanup/prj_exe_no_implib_simple_target_root.rb
147
+ - tests/cpp/vc_cleanup/prj_lib_with_simple_target_root.rb
148
+ - tests/cpp/vc_cleanup/prj_dll_no_implib_simple_target_root.rb
149
+ - tests/cpp/vc_cleanup/tc_vc_cleanup.rb
150
+ - tests/cpp/vc_cleanup/exe_hi.cpp
151
+ - tests/cpp/vc_cleanup/dll_hi.cpp
152
+ - tests/cpp/vc_cleanup/prj_dll_no_implib.rb
153
+ - tests/cpp/vc_cleanup/prj_dll_with_implib_simple_target_root.rb
154
+ - tests/cpp/vc_cleanup/prj_dll_with_implib.rb
155
+ - tests/cpp/vc_cleanup/simple_target_root
156
+ - tests/cpp/vc_cleanup/lib/simple_target_root
157
+ - tests/cpp/rucodegen.embedded/h
158
+ - tests/cpp/rucodegen.embedded/o
159
+ - tests/cpp/rucodegen.embedded/impl
160
+ - tests/cpp/rucodegen.embedded/host_config.cpp
161
+ - tests/cpp/rucodegen.embedded/prj.rb
162
+ - tests/cpp/rucodegen.embedded/tc_rucodegen.rb
163
+ - tests/cpp/rucodegen.embedded/impl/h
164
+ - tests/cpp/rucodegen.embedded/impl/o
165
+ - tests/cpp/rucodegen.embedded/impl/conn_params.cpp
166
+ - tests/cpp/rucodegen.embedded/impl/conn_params.rb
167
+ - tests/cpp/rucodegen.embedded/impl/h/conn_params.hpp
168
+ - tests/unix/lib_linking_mode
169
+ - tests/unix/lib_order
170
+ - tests/unix/lib_linking_mode/o
171
+ - tests/unix/lib_linking_mode/out
172
+ - tests/unix/lib_linking_mode/main_shared.ut.rb
173
+ - tests/unix/lib_linking_mode/main_conflict.rb
174
+ - tests/unix/lib_linking_mode/a.hpp
175
+ - tests/unix/lib_linking_mode/main_shared.cpp
176
+ - tests/unix/lib_linking_mode/main_static.ut.rb
177
+ - tests/unix/lib_linking_mode/a_shared.rb
178
+ - tests/unix/lib_linking_mode/main_static.cpp
179
+ - tests/unix/lib_linking_mode/tc_conflicted_build.rb
180
+ - tests/unix/lib_linking_mode/a_shared.cpp
181
+ - tests/unix/lib_linking_mode/etalon
182
+ - tests/unix/lib_linking_mode/a_static.rb
183
+ - tests/unix/lib_linking_mode/main_static_2.ut.rb
184
+ - tests/unix/lib_linking_mode/main_shared.rb
185
+ - tests/unix/lib_linking_mode/main_static_2.rb
186
+ - tests/unix/lib_linking_mode/main_shared_2.cpp
187
+ - tests/unix/lib_linking_mode/main_static_2.cpp
188
+ - tests/unix/lib_linking_mode/a_static.cpp
189
+ - tests/unix/lib_linking_mode/main.impl.cpp
190
+ - tests/unix/lib_linking_mode/main_shared_2.ut.rb
191
+ - tests/unix/lib_linking_mode/main_shared_2.rb
192
+ - tests/unix/lib_linking_mode/main_static.rb
193
+ - tests/unix/lib_linking_mode/tc_normal_build.rb
194
+ - tests/unix/lib_linking_mode/main_conflict.cpp
195
+ - tests/unix/lib_linking_mode/main_conflict_2.rb
196
+ - tests/unix/lib_linking_mode/etalon/shared.txt
197
+ - tests/unix/lib_linking_mode/etalon/static.txt
198
+ - tests/unix/lib_order/a.rb
199
+ - tests/unix/lib_order/b.rb
200
+ - tests/unix/lib_order/c.rb
201
+ - tests/unix/lib_order/d.rb
202
+ - tests/unix/lib_order/a.cpp
203
+ - tests/unix/lib_order/a.hpp
204
+ - tests/unix/lib_order/b.cpp
205
+ - tests/unix/lib_order/b.hpp
206
+ - tests/unix/lib_order/c.cpp
207
+ - tests/unix/lib_order/c.hpp
208
+ - tests/unix/lib_order/d.cpp
209
+ - tests/unix/lib_order/d.hpp
210
+ - tests/unix/lib_order/main.rb
211
+ - tests/unix/lib_order/main.cpp
212
+ - tests/unix/lib_order/build.rb
213
+ - tests/unix/lib_order/tc_normal_build.rb
214
+ - tests/mxx_ru/vc8
215
+ - tests/mxx_ru/target_ext
216
+ - tests/mxx_ru/change_default_value
217
+ - tests/mxx_ru/tc_makestyle_generator.rb
218
+ - tests/mxx_ru/opt_lib_ext
219
+ - tests/mxx_ru/qt_gen
220
+ - tests/mxx_ru/binary_library
221
+ - tests/mxx_ru/plural_form_methods
222
+ - tests/mxx_ru/obj_placements
223
+ - tests/mxx_ru/lib_path
224
+ - tests/mxx_ru/vc8/tc_drop_default_manifest.rb
225
+ - tests/mxx_ru/vc8/ts_vc8.rb
226
+ - tests/mxx_ru/vc8/tc_default_manifest.rb
227
+ - tests/mxx_ru/vc8/tc_append_mt_commands.rb
228
+ - tests/mxx_ru/vc8/tc_actual_manifest.rb
229
+ - tests/mxx_ru/vc8/tc_define_manifest.rb
230
+ - tests/mxx_ru/vc8/tc_invalid_params.rb
231
+ - tests/mxx_ru/target_ext/lib_hi.cpp
232
+ - tests/mxx_ru/target_ext/prj_dll.rb
233
+ - tests/mxx_ru/target_ext/prj_exe.rb
234
+ - tests/mxx_ru/target_ext/prj_lib.rb
235
+ - tests/mxx_ru/target_ext/tc_target_ext.rb
236
+ - tests/mxx_ru/target_ext/exe_hi.cpp
237
+ - tests/mxx_ru/target_ext/dll_hi.cpp
238
+ - tests/mxx_ru/change_default_value/ok
239
+ - tests/mxx_ru/change_default_value/ignoring_by_child_1
240
+ - tests/mxx_ru/change_default_value/ignoring_by_build_root
241
+ - tests/mxx_ru/change_default_value/ok/child_1.rb
242
+ - tests/mxx_ru/change_default_value/ok/build.rb
243
+ - tests/mxx_ru/change_default_value/ignoring_by_child_1/child_1.rb
244
+ - tests/mxx_ru/change_default_value/ignoring_by_child_1/child_2.rb
245
+ - tests/mxx_ru/change_default_value/ignoring_by_child_1/build.rb
246
+ - tests/mxx_ru/change_default_value/ignoring_by_build_root/child_1.rb
247
+ - tests/mxx_ru/change_default_value/ignoring_by_build_root/build.rb
248
+ - tests/mxx_ru/opt_lib_ext/hi.c
249
+ - tests/mxx_ru/opt_lib_ext/hi.h
250
+ - tests/mxx_ru/opt_lib_ext/hi.rb
251
+ - tests/mxx_ru/opt_lib_ext/test-no-ext.rb
252
+ - tests/mxx_ru/opt_lib_ext/tc_opt_lib_ext.rb
253
+ - tests/mxx_ru/opt_lib_ext/test-with-ext.rb
254
+ - tests/mxx_ru/opt_lib_ext/main.c
255
+ - tests/mxx_ru/opt_lib_ext/build.rb
256
+ - tests/mxx_ru/qt_gen/tc_uic_result_subdir.rb
257
+ - tests/mxx_ru/binary_library/tc_binary_target_lib_methods.rb
258
+ - tests/mxx_ru/binary_library/tc_binary_library.rb
259
+ - tests/mxx_ru/plural_form_methods/tc.rb
260
+ - tests/mxx_ru/obj_placements/tc_custom_subdir.rb
261
+ - tests/mxx_ru/lib_path/hi.c
262
+ - tests/mxx_ru/lib_path/bye_lib
263
+ - tests/mxx_ru/lib_path/bye.c
264
+ - tests/mxx_ru/lib_path/hi.rb
265
+ - tests/mxx_ru/lib_path/main.rb
266
+ - tests/mxx_ru/lib_path/tc_lib_path.rb
267
+ - tests/mxx_ru/lib_path/bye.rb
268
+ - tests/mxx_ru/lib_path/hi_lib
269
+ - tests/mxx_ru/lib_path/main.c
270
+ - tests/mxx_ru/lib_path/build.rb
271
+ - lib/mxx_ru
272
+ - lib/mxx_ru/cpp
273
+ - lib/mxx_ru/binary_library.rb
274
+ - lib/mxx_ru/ex.rb
275
+ - lib/mxx_ru/compat.rb
276
+ - lib/mxx_ru/textfile_unittest.rb
277
+ - lib/mxx_ru/abstract_target.rb
278
+ - lib/mxx_ru/cpp.rb
279
+ - lib/mxx_ru/makestyle_generator.rb
280
+ - lib/mxx_ru/util.rb
281
+ - lib/mxx_ru/binary_unittest.rb
282
+ - lib/mxx_ru/binary_target.rb
283
+ - lib/mxx_ru/cpp/composite.rb
284
+ - lib/mxx_ru/cpp/source_file.rb
285
+ - lib/mxx_ru/cpp/obj_placement.rb
286
+ - lib/mxx_ru/cpp/qt.rb
287
+ - lib/mxx_ru/cpp/target.rb
288
+ - lib/mxx_ru/cpp/toolset.rb
289
+ - lib/mxx_ru/cpp/mode.rb
290
+ - lib/mxx_ru/cpp/rucodegen.rb
291
+ - lib/mxx_ru/cpp/detect_toolset.rb
292
+ - lib/mxx_ru/cpp/analyzer.rb
293
+ - lib/mxx_ru/cpp/obj_placements
294
+ - lib/mxx_ru/cpp/toolsets
295
+ - lib/mxx_ru/cpp/obj_placements/custom_subdir.rb
296
+ - lib/mxx_ru/cpp/toolsets/gcc_unix_family.rb
297
+ - lib/mxx_ru/cpp/toolsets/gcc_linux.rb
298
+ - lib/mxx_ru/cpp/toolsets/c89_nsk_family.rb
299
+ - lib/mxx_ru/cpp/toolsets/c89_etk_nsk.rb
300
+ - lib/mxx_ru/cpp/toolsets/vc_family.rb
301
+ - lib/mxx_ru/cpp/toolsets/bcc_win32_family.rb
302
+ - lib/mxx_ru/cpp/toolsets/gcc_family.rb
303
+ - lib/mxx_ru/cpp/toolsets/gcc_cygwin.rb
304
+ - lib/mxx_ru/cpp/toolsets/bcc_win32_5.rb
305
+ - lib/mxx_ru/cpp/toolsets/gcc_mingw.rb
306
+ - lib/mxx_ru/cpp/toolsets/vc7.rb
307
+ - lib/mxx_ru/cpp/toolsets/vc8.rb
308
+ - lib/mxx_ru/cpp/toolsets/gcc_sparc_solaris.rb
309
+ - lib/mxx_ru/cpp/toolsets/c89_nsk.rb
310
+ - examples/exe_dll_lib
311
+ - examples/exe_dll_lib_2
312
+ - examples/simple_exe
313
+ - examples/exe_and_lib
314
+ - examples/exe_dll_lib/say.cpp
315
+ - examples/exe_dll_lib/say.hpp
316
+ - examples/exe_dll_lib/main.cpp
317
+ - examples/exe_dll_lib/inout.cpp
318
+ - examples/exe_dll_lib/inout.hpp
319
+ - examples/exe_dll_lib/prj.rb
320
+ - examples/exe_dll_lib/say.rb
321
+ - examples/exe_dll_lib/inout.rb
322
+ - examples/exe_dll_lib_2/lib
323
+ - examples/exe_dll_lib_2/say
324
+ - examples/exe_dll_lib_2/main
325
+ - examples/exe_dll_lib_2/inout
326
+ - examples/exe_dll_lib_2/build.rb
327
+ - examples/exe_dll_lib_2/say/o
328
+ - examples/exe_dll_lib_2/say/say.cpp
329
+ - examples/exe_dll_lib_2/say/say.hpp
330
+ - examples/exe_dll_lib_2/say/prj.rb
331
+ - examples/exe_dll_lib_2/main/o
332
+ - examples/exe_dll_lib_2/main/main.cpp
333
+ - examples/exe_dll_lib_2/main/prj.rb
334
+ - examples/exe_dll_lib_2/inout/o
335
+ - examples/exe_dll_lib_2/inout/inout.cpp
336
+ - examples/exe_dll_lib_2/inout/inout.hpp
337
+ - examples/exe_dll_lib_2/inout/prj.rb
338
+ - examples/simple_exe/main.cpp
339
+ - examples/simple_exe/prj.rb
340
+ - examples/exe_and_lib/say.cpp
341
+ - examples/exe_and_lib/say.hpp
342
+ - examples/exe_and_lib/main.cpp
343
+ - examples/exe_and_lib/prj.rb
344
+ - examples/exe_and_lib/say.rb
345
+ - THANKS
346
+ - README
347
+ - Rakefile
348
+ - COPYING
349
+ - NEWS
332
350
  test_files: []
351
+
333
352
  rdoc_options:
334
- - "-S"
335
- - "--main"
336
- - README
353
+ - -S
354
+ - --main
355
+ - README
337
356
  extra_rdoc_files:
338
- - README
339
- - Rakefile
340
- - COPYING
341
- - NEWS
357
+ - README
358
+ - Rakefile
359
+ - COPYING
360
+ - NEWS
342
361
  executables: []
362
+
343
363
  extensions: []
364
+
344
365
  requirements: []
345
- dependencies: []
366
+
367
+ dependencies: []
368
+