Mxx_ru 1.3.1 → 1.3.2

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