Mxx_ru 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (147) hide show
  1. data/COPYING +26 -0
  2. data/NEWS +52 -0
  3. data/README +21 -0
  4. data/Rakefile +32 -0
  5. data/examples/exe_and_lib/main.cpp +15 -0
  6. data/examples/exe_and_lib/prj.rb +11 -0
  7. data/examples/exe_and_lib/say.cpp +13 -0
  8. data/examples/exe_and_lib/say.hpp +11 -0
  9. data/examples/exe_and_lib/say.rb +7 -0
  10. data/examples/exe_dll_lib/inout.cpp +15 -0
  11. data/examples/exe_dll_lib/inout.hpp +26 -0
  12. data/examples/exe_dll_lib/inout.rb +18 -0
  13. data/examples/exe_dll_lib/main.cpp +23 -0
  14. data/examples/exe_dll_lib/prj.rb +11 -0
  15. data/examples/exe_dll_lib/say.cpp +13 -0
  16. data/examples/exe_dll_lib/say.hpp +12 -0
  17. data/examples/exe_dll_lib/say.rb +9 -0
  18. data/examples/exe_dll_lib_2/build.rb +7 -0
  19. data/examples/exe_dll_lib_2/inout/inout.cpp +15 -0
  20. data/examples/exe_dll_lib_2/inout/inout.hpp +26 -0
  21. data/examples/exe_dll_lib_2/inout/prj.rb +16 -0
  22. data/examples/exe_dll_lib_2/main/main.cpp +23 -0
  23. data/examples/exe_dll_lib_2/main/prj.rb +9 -0
  24. data/examples/exe_dll_lib_2/say/prj.rb +8 -0
  25. data/examples/exe_dll_lib_2/say/say.cpp +13 -0
  26. data/examples/exe_dll_lib_2/say/say.hpp +12 -0
  27. data/examples/simple_exe/main.cpp +26 -0
  28. data/examples/simple_exe/prj.rb +7 -0
  29. data/lib/mxx_ru/abstract_target.rb +283 -0
  30. data/lib/mxx_ru/binary_target.rb +89 -0
  31. data/lib/mxx_ru/binary_unittest.rb +130 -0
  32. data/lib/mxx_ru/cpp/analyzer.rb +230 -0
  33. data/lib/mxx_ru/cpp/composite.rb +106 -0
  34. data/lib/mxx_ru/cpp/detect_toolset.rb +122 -0
  35. data/lib/mxx_ru/cpp/mode.rb +85 -0
  36. data/lib/mxx_ru/cpp/obj_placement.rb +321 -0
  37. data/lib/mxx_ru/cpp/qt.rb +333 -0
  38. data/lib/mxx_ru/cpp/rucodegen.rb +114 -0
  39. data/lib/mxx_ru/cpp/source_file.rb +71 -0
  40. data/lib/mxx_ru/cpp/target.rb +1371 -0
  41. data/lib/mxx_ru/cpp/toolset.rb +1029 -0
  42. data/lib/mxx_ru/cpp/toolsets/bcc_win32_5.rb +52 -0
  43. data/lib/mxx_ru/cpp/toolsets/bcc_win32_family.rb +451 -0
  44. data/lib/mxx_ru/cpp/toolsets/c89_etk_nsk.rb +56 -0
  45. data/lib/mxx_ru/cpp/toolsets/c89_nsk.rb +56 -0
  46. data/lib/mxx_ru/cpp/toolsets/c89_nsk_family.rb +273 -0
  47. data/lib/mxx_ru/cpp/toolsets/gcc_cygwin.rb +54 -0
  48. data/lib/mxx_ru/cpp/toolsets/gcc_family.rb +382 -0
  49. data/lib/mxx_ru/cpp/toolsets/gcc_linux.rb +60 -0
  50. data/lib/mxx_ru/cpp/toolsets/gcc_mingw.rb +144 -0
  51. data/lib/mxx_ru/cpp/toolsets/gcc_sparc_solaris.rb +87 -0
  52. data/lib/mxx_ru/cpp/toolsets/vc7.rb +62 -0
  53. data/lib/mxx_ru/cpp/toolsets/vc8.rb +452 -0
  54. data/lib/mxx_ru/cpp/toolsets/vc_family.rb +428 -0
  55. data/lib/mxx_ru/cpp.rb +36 -0
  56. data/lib/mxx_ru/ex.rb +134 -0
  57. data/lib/mxx_ru/makestyle_generator.rb +138 -0
  58. data/lib/mxx_ru/textfile_unittest.rb +284 -0
  59. data/lib/mxx_ru/util.rb +258 -0
  60. data/tests/c/pcre/chartables.c +183 -0
  61. data/tests/c/pcre/config.h +99 -0
  62. data/tests/c/pcre/dftables.c +167 -0
  63. data/tests/c/pcre/get.c +349 -0
  64. data/tests/c/pcre/internal.h +677 -0
  65. data/tests/c/pcre/maketables.c +140 -0
  66. data/tests/c/pcre/pcre.c +8304 -0
  67. data/tests/c/pcre/pcre.h +193 -0
  68. data/tests/c/pcre/pcre.rb +14 -0
  69. data/tests/c/pcre/pcredemo.c +316 -0
  70. data/tests/c/pcre/pcregrep.c +642 -0
  71. data/tests/c/pcre/pcreposix.c +305 -0
  72. data/tests/c/pcre/pcreposix.h +88 -0
  73. data/tests/c/pcre/pcretest.c +1483 -0
  74. data/tests/c/pcre/perltest +211 -0
  75. data/tests/c/pcre/printint.c +360 -0
  76. data/tests/c/pcre/study.c +472 -0
  77. data/tests/cpp/mswin_res_dll/build.rb +14 -0
  78. data/tests/cpp/mswin_res_dll/dll.cpp +17 -0
  79. data/tests/cpp/mswin_res_dll/dll.rb +30 -0
  80. data/tests/cpp/mswin_res_dll/dll.rc +48 -0
  81. data/tests/cpp/mswin_res_dll/h/dll.hpp +8 -0
  82. data/tests/cpp/mswin_res_dll/h/res.h +3 -0
  83. data/tests/cpp/mswin_res_dll/main.cpp +13 -0
  84. data/tests/cpp/mswin_res_dll/main.rb +20 -0
  85. data/tests/cpp/mswin_res_dll/res/tree_fol.bmp +0 -0
  86. data/tests/cpp/mswin_res_dll/res/tree_state_1.bmp +0 -0
  87. data/tests/cpp/mswin_res_dll/res/tree_state_2.bmp +0 -0
  88. data/tests/cpp/mswin_res_exe/build.rb +23 -0
  89. data/tests/cpp/mswin_res_exe/h/res.h +3 -0
  90. data/tests/cpp/mswin_res_exe/main.cpp +17 -0
  91. data/tests/cpp/mswin_res_exe/main.rc +48 -0
  92. data/tests/cpp/mswin_res_exe/res/tree_fol.bmp +0 -0
  93. data/tests/cpp/mswin_res_exe/res/tree_state_1.bmp +0 -0
  94. data/tests/cpp/mswin_res_exe/res/tree_state_2.bmp +0 -0
  95. data/tests/cpp/rucodegen/host_config.cpp +20 -0
  96. data/tests/cpp/rucodegen/host_config.rb +14 -0
  97. data/tests/cpp/rucodegen/impl/conn_params.cpp +7 -0
  98. data/tests/cpp/rucodegen/impl/conn_params.rb +14 -0
  99. data/tests/cpp/rucodegen/impl/h/conn_params.hpp +10 -0
  100. data/tests/cpp/rucodegen/prj.rb +17 -0
  101. data/tests/cpp/textfile_unittest/build.rb +8 -0
  102. data/tests/cpp/textfile_unittest/etalons/out_0.txt +0 -0
  103. data/tests/cpp/textfile_unittest/etalons/out_1.txt +1 -0
  104. data/tests/cpp/textfile_unittest/etalons/out_128.txt +128 -0
  105. data/tests/cpp/textfile_unittest/main.cpp +89 -0
  106. data/tests/cpp/textfile_unittest/prj.rb +8 -0
  107. data/tests/cpp/textfile_unittest/prj.ut.rb +18 -0
  108. data/tests/cpp/toolset_name.rb +6 -0
  109. data/tests/cpp/vc_cleanup/cout.log +72 -0
  110. data/tests/cpp/vc_cleanup/dll_hi.cpp +5 -0
  111. data/tests/cpp/vc_cleanup/exe_hi.cpp +10 -0
  112. data/tests/cpp/vc_cleanup/lib_hi.cpp +5 -0
  113. data/tests/cpp/vc_cleanup/prj_dll_no_implib.rb +10 -0
  114. data/tests/cpp/vc_cleanup/prj_dll_no_implib_simple_target_root.rb +11 -0
  115. data/tests/cpp/vc_cleanup/prj_dll_with_implib.rb +11 -0
  116. data/tests/cpp/vc_cleanup/prj_dll_with_implib_simple_target_root.rb +14 -0
  117. data/tests/cpp/vc_cleanup/prj_exe_no_implib.rb +10 -0
  118. data/tests/cpp/vc_cleanup/prj_exe_no_implib_simple_target_root.rb +11 -0
  119. data/tests/cpp/vc_cleanup/prj_lib.rb +10 -0
  120. data/tests/cpp/vc_cleanup/prj_lib_with_simple_target_root.rb +11 -0
  121. data/tests/cpp/vc_cleanup/tc_vc_cleanup.rb +60 -0
  122. data/tests/mxx_ru/change_default_value/ignoring_by_build_root/build.rb +8 -0
  123. data/tests/mxx_ru/change_default_value/ignoring_by_build_root/child_1.rb +5 -0
  124. data/tests/mxx_ru/change_default_value/ignoring_by_child_1/build.rb +7 -0
  125. data/tests/mxx_ru/change_default_value/ignoring_by_child_1/child_1.rb +5 -0
  126. data/tests/mxx_ru/change_default_value/ignoring_by_child_1/child_2.rb +5 -0
  127. data/tests/mxx_ru/change_default_value/ok/build.rb +8 -0
  128. data/tests/mxx_ru/change_default_value/ok/child_1.rb +8 -0
  129. data/tests/mxx_ru/tc_makestyle_generator.rb +117 -0
  130. data/tests/mxx_ru/vc8/tc_actual_manifest.rb +230 -0
  131. data/tests/mxx_ru/vc8/tc_append_mt_commands.rb +104 -0
  132. data/tests/mxx_ru/vc8/tc_default_manifest.rb +17 -0
  133. data/tests/mxx_ru/vc8/tc_define_manifest.rb +173 -0
  134. data/tests/mxx_ru/vc8/tc_drop_default_manifest.rb +16 -0
  135. data/tests/mxx_ru/vc8/tc_invalid_params.rb +81 -0
  136. data/tests/mxx_ru/vc8/ts_vc8.rb +10 -0
  137. data/tests/qt/aclock/aclock.cpp +148 -0
  138. data/tests/qt/aclock/aclock.h +45 -0
  139. data/tests/qt/aclock/main.cpp +28 -0
  140. data/tests/qt/aclock/prj.rb +21 -0
  141. data/tests/qt/iconview/main.cpp +76 -0
  142. data/tests/qt/iconview/prj.rb +21 -0
  143. data/tests/qt/toplevel/main.cpp +9 -0
  144. data/tests/qt/toplevel/options.ui +587 -0
  145. data/tests/qt/toplevel/options.ui.h +98 -0
  146. data/tests/qt/toplevel/prj.rb +21 -0
  147. metadata +241 -0
@@ -0,0 +1,98 @@
1
+ void OptionsDialog::apply()
2
+ {
3
+ QStringList flagList;
4
+ bool wstyle = false;
5
+ WFlags f = WDestructiveClose | WType_TopLevel | WStyle_Customize;
6
+
7
+ if ( bgBorder->isChecked() ) {
8
+ if ( rbBorderNormal->isChecked() ) {
9
+ f |= WStyle_NormalBorder;
10
+ flagList += "WStyle_NormalBorder";
11
+ wstyle = true;
12
+ }
13
+ else if ( rbBorderDialog->isChecked() ) {
14
+ f |= WStyle_DialogBorder;
15
+ flagList += "WStyle_DialogBorder";
16
+ wstyle = true;
17
+ }
18
+
19
+ if ( bgTitle->isChecked() ) {
20
+ f |= WStyle_Title;
21
+ flagList += "WStyle_Title";
22
+ wstyle = true;
23
+ if ( cbTitleSystem->isChecked() ) {
24
+ f |= WStyle_SysMenu;
25
+ flagList += "WStyle_SysMenu";
26
+ }
27
+ if ( cbTitleMinimize->isChecked() ) {
28
+ f |= WStyle_Minimize;
29
+ flagList += "WStyle_Minimize";
30
+ }
31
+ if ( cbTitleMaximize->isChecked() ) {
32
+ f |= WStyle_Maximize;
33
+ flagList += "WStyle_Maximize";
34
+ }
35
+ if ( cbTitleContext->isChecked() ) {
36
+ f |= WStyle_ContextHelp;
37
+ flagList += "WStyle_ContextHelp";
38
+ }
39
+ }
40
+ } else {
41
+ f |= WStyle_NoBorder;
42
+ flagList += "WStyle_NoBorder";
43
+ wstyle = true;
44
+ }
45
+
46
+ QWidget *parent = this;
47
+ if ( cbBehaviorTaskbar->isChecked() ) {
48
+ parent = 0;
49
+ f |= WGroupLeader;
50
+ flagList += "WGroupLeader";
51
+ }
52
+ if ( cbBehaviorStays->isChecked() ) {
53
+ f |= WStyle_StaysOnTop /*| WX11BypassWM*/;
54
+ flagList += "WStyle_StaysOnTop";
55
+ wstyle = true;
56
+ }
57
+ if ( cbBehaviorPopup->isChecked() ) {
58
+ f |= WType_Popup;
59
+ flagList += "WType_Popup";
60
+ }
61
+ if ( cbBehaviorModal->isChecked() ) {
62
+ f |= WShowModal;
63
+ flagList += "WShowModal";
64
+ }
65
+ if ( cbBehaviorTool->isChecked() ) {
66
+ f |= WStyle_Tool;
67
+ flagList += "WStyle_Tool";
68
+ wstyle = true;
69
+ }
70
+
71
+ if (wstyle)
72
+ flagList.push_front("WStyle_Customize");
73
+
74
+ if ( !widget ) {
75
+ widget = new QVBox( parent, 0, f );
76
+ widget->setMargin( 20 );
77
+ QLabel *label = new QLabel(flagList.join(" | "), widget);
78
+ label->setTextFormat(RichText);
79
+ label->setAlignment(WordBreak);
80
+ QPushButton *okButton = new QPushButton( "Close", widget );
81
+ connect( okButton, SIGNAL(clicked()), widget, SLOT(close()) );
82
+ widget->move( pos() );
83
+ } else {
84
+ widget->reparent( parent, f, widget->geometry().topLeft(), FALSE);
85
+ }
86
+
87
+ widget->setCaption( leCaption->text() );
88
+ widget->setIcon( leIcon->text() );
89
+ widget->setWindowOpacity(double(slTransparency->maxValue() - slTransparency->value()) / 100);
90
+
91
+ widget->show();
92
+ }
93
+
94
+ void OptionsDialog::pickIcon()
95
+ {
96
+ QString filename = QFileDialog::getOpenFileName( QString::null, QString::null, this );
97
+ leIcon->setText( filename );
98
+ }
@@ -0,0 +1,21 @@
1
+ require 'mxx_ru/cpp/qt'
2
+
3
+ Mxx_ru::setup_target(
4
+ Mxx_ru::Cpp::Exe_target.new( "prj.rb" ) {
5
+
6
+ threading_mode( Mxx_ru::Cpp::THREADING_MULTI )
7
+ rtl_mode( Mxx_ru::Cpp::RTL_SHARED )
8
+
9
+ target( "toplevel" )
10
+
11
+ qt = generator( Mxx_ru::Cpp::Qt_gen.new( self ) )
12
+ qt.moc_result_subdir = nil
13
+ qt.hpp_ext = ".h"
14
+
15
+ qt.ui( "options.ui" )
16
+
17
+ cpp_source( "main.cpp" )
18
+
19
+ lib( "qt-mt333.lib" )
20
+ }
21
+ )
metadata ADDED
@@ -0,0 +1,241 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.8.10
3
+ specification_version: 1
4
+ name: Mxx_ru
5
+ version: !ruby/object:Gem::Version
6
+ version: 1.1.0
7
+ date: 2006-04-09
8
+ summary: Mxx_ru (Make++ on Ruby) is a cross-platform build tool
9
+ require_paths:
10
+ - lib
11
+ email: eao197@yahoo.com
12
+ homepage: http://www.rubyforge.com/projects/mxx-ru
13
+ rubyforge_project:
14
+ description:
15
+ autorequire:
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: true
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ -
22
+ - ">"
23
+ - !ruby/object:Gem::Version
24
+ version: 0.0.0
25
+ version:
26
+ platform: ruby
27
+ authors:
28
+ - The Mxx_ru Project
29
+ files:
30
+ - tests/c
31
+ - tests/cpp
32
+ - tests/mxx_ru
33
+ - tests/qt
34
+ - tests/c/pcre
35
+ - tests/c/pcre/chartables.c
36
+ - tests/c/pcre/config.h
37
+ - tests/c/pcre/dftables.c
38
+ - tests/c/pcre/get.c
39
+ - tests/c/pcre/internal.h
40
+ - tests/c/pcre/lib
41
+ - tests/c/pcre/maketables.c
42
+ - tests/c/pcre/o
43
+ - tests/c/pcre/pcre.c
44
+ - tests/c/pcre/pcre.h
45
+ - tests/c/pcre/pcre.rb
46
+ - tests/c/pcre/pcredemo.c
47
+ - tests/c/pcre/pcregrep.c
48
+ - tests/c/pcre/pcreposix.c
49
+ - tests/c/pcre/pcreposix.h
50
+ - tests/c/pcre/pcretest.c
51
+ - tests/c/pcre/perltest
52
+ - tests/c/pcre/printint.c
53
+ - tests/c/pcre/study.c
54
+ - tests/cpp/mswin_res_dll
55
+ - tests/cpp/mswin_res_exe
56
+ - tests/cpp/o
57
+ - tests/cpp/rucodegen
58
+ - tests/cpp/textfile_unittest
59
+ - tests/cpp/toolset_name.rb
60
+ - tests/cpp/vc_cleanup
61
+ - tests/cpp/mswin_res_dll/build.rb
62
+ - tests/cpp/mswin_res_dll/dll.cpp
63
+ - tests/cpp/mswin_res_dll/dll.rb
64
+ - tests/cpp/mswin_res_dll/dll.rc
65
+ - tests/cpp/mswin_res_dll/h
66
+ - tests/cpp/mswin_res_dll/main.cpp
67
+ - tests/cpp/mswin_res_dll/main.rb
68
+ - tests/cpp/mswin_res_dll/o
69
+ - tests/cpp/mswin_res_dll/res
70
+ - tests/cpp/mswin_res_dll/h/dll.hpp
71
+ - tests/cpp/mswin_res_dll/h/res.h
72
+ - tests/cpp/mswin_res_dll/res/tree_fol.bmp
73
+ - tests/cpp/mswin_res_dll/res/tree_state_1.bmp
74
+ - tests/cpp/mswin_res_dll/res/tree_state_2.bmp
75
+ - tests/cpp/mswin_res_exe/build.rb
76
+ - tests/cpp/mswin_res_exe/h
77
+ - tests/cpp/mswin_res_exe/main.cpp
78
+ - tests/cpp/mswin_res_exe/main.rc
79
+ - tests/cpp/mswin_res_exe/o
80
+ - tests/cpp/mswin_res_exe/res
81
+ - tests/cpp/mswin_res_exe/h/res.h
82
+ - tests/cpp/mswin_res_exe/res/tree_fol.bmp
83
+ - tests/cpp/mswin_res_exe/res/tree_state_1.bmp
84
+ - tests/cpp/mswin_res_exe/res/tree_state_2.bmp
85
+ - tests/cpp/rucodegen/h
86
+ - tests/cpp/rucodegen/host_config.cpp
87
+ - tests/cpp/rucodegen/host_config.rb
88
+ - tests/cpp/rucodegen/impl
89
+ - tests/cpp/rucodegen/o
90
+ - tests/cpp/rucodegen/prj.rb
91
+ - tests/cpp/rucodegen/impl/conn_params.cpp
92
+ - tests/cpp/rucodegen/impl/conn_params.rb
93
+ - tests/cpp/rucodegen/impl/h
94
+ - tests/cpp/rucodegen/impl/o
95
+ - tests/cpp/rucodegen/impl/h/conn_params.hpp
96
+ - tests/cpp/textfile_unittest/build.rb
97
+ - tests/cpp/textfile_unittest/etalons
98
+ - tests/cpp/textfile_unittest/main.cpp
99
+ - tests/cpp/textfile_unittest/o
100
+ - tests/cpp/textfile_unittest/prj.rb
101
+ - tests/cpp/textfile_unittest/prj.ut.rb
102
+ - tests/cpp/textfile_unittest/etalons/out_0.txt
103
+ - tests/cpp/textfile_unittest/etalons/out_1.txt
104
+ - tests/cpp/textfile_unittest/etalons/out_128.txt
105
+ - tests/cpp/vc_cleanup/cout.log
106
+ - tests/cpp/vc_cleanup/dll_hi.cpp
107
+ - tests/cpp/vc_cleanup/exe_hi.cpp
108
+ - tests/cpp/vc_cleanup/lib
109
+ - tests/cpp/vc_cleanup/lib_hi.cpp
110
+ - tests/cpp/vc_cleanup/o
111
+ - tests/cpp/vc_cleanup/prj_dll_no_implib.rb
112
+ - tests/cpp/vc_cleanup/prj_dll_no_implib_simple_target_root.rb
113
+ - tests/cpp/vc_cleanup/prj_dll_with_implib.rb
114
+ - tests/cpp/vc_cleanup/prj_dll_with_implib_simple_target_root.rb
115
+ - tests/cpp/vc_cleanup/prj_exe_no_implib.rb
116
+ - tests/cpp/vc_cleanup/prj_exe_no_implib_simple_target_root.rb
117
+ - tests/cpp/vc_cleanup/prj_lib.rb
118
+ - tests/cpp/vc_cleanup/prj_lib_with_simple_target_root.rb
119
+ - tests/cpp/vc_cleanup/simple_target_root
120
+ - tests/cpp/vc_cleanup/tc_vc_cleanup.rb
121
+ - tests/cpp/vc_cleanup/lib/simple_target_root
122
+ - tests/mxx_ru/change_default_value
123
+ - tests/mxx_ru/tc_makestyle_generator.rb
124
+ - tests/mxx_ru/vc8
125
+ - tests/mxx_ru/change_default_value/ignoring_by_build_root
126
+ - tests/mxx_ru/change_default_value/ignoring_by_child_1
127
+ - tests/mxx_ru/change_default_value/ok
128
+ - tests/mxx_ru/change_default_value/ignoring_by_build_root/build.rb
129
+ - tests/mxx_ru/change_default_value/ignoring_by_build_root/child_1.rb
130
+ - tests/mxx_ru/change_default_value/ignoring_by_child_1/build.rb
131
+ - tests/mxx_ru/change_default_value/ignoring_by_child_1/child_1.rb
132
+ - tests/mxx_ru/change_default_value/ignoring_by_child_1/child_2.rb
133
+ - tests/mxx_ru/change_default_value/ok/build.rb
134
+ - tests/mxx_ru/change_default_value/ok/child_1.rb
135
+ - tests/mxx_ru/vc8/tc_actual_manifest.rb
136
+ - tests/mxx_ru/vc8/tc_append_mt_commands.rb
137
+ - tests/mxx_ru/vc8/tc_default_manifest.rb
138
+ - tests/mxx_ru/vc8/tc_define_manifest.rb
139
+ - tests/mxx_ru/vc8/tc_drop_default_manifest.rb
140
+ - tests/mxx_ru/vc8/tc_invalid_params.rb
141
+ - tests/mxx_ru/vc8/ts_vc8.rb
142
+ - tests/qt/aclock
143
+ - tests/qt/iconview
144
+ - tests/qt/toplevel
145
+ - tests/qt/aclock/aclock.cpp
146
+ - tests/qt/aclock/aclock.h
147
+ - tests/qt/aclock/main.cpp
148
+ - tests/qt/aclock/prj.rb
149
+ - tests/qt/iconview/main.cpp
150
+ - tests/qt/iconview/prj.rb
151
+ - tests/qt/toplevel/main.cpp
152
+ - tests/qt/toplevel/options.ui
153
+ - tests/qt/toplevel/options.ui.h
154
+ - tests/qt/toplevel/prj.rb
155
+ - lib/mxx_ru
156
+ - lib/mxx_ru/abstract_target.rb
157
+ - lib/mxx_ru/binary_target.rb
158
+ - lib/mxx_ru/binary_unittest.rb
159
+ - lib/mxx_ru/cpp
160
+ - lib/mxx_ru/cpp.rb
161
+ - lib/mxx_ru/ex.rb
162
+ - lib/mxx_ru/makestyle_generator.rb
163
+ - lib/mxx_ru/textfile_unittest.rb
164
+ - lib/mxx_ru/util.rb
165
+ - lib/mxx_ru/cpp/analyzer.rb
166
+ - lib/mxx_ru/cpp/composite.rb
167
+ - lib/mxx_ru/cpp/detect_toolset.rb
168
+ - lib/mxx_ru/cpp/mode.rb
169
+ - lib/mxx_ru/cpp/obj_placement.rb
170
+ - lib/mxx_ru/cpp/qt.rb
171
+ - lib/mxx_ru/cpp/rucodegen.rb
172
+ - lib/mxx_ru/cpp/source_file.rb
173
+ - lib/mxx_ru/cpp/target.rb
174
+ - lib/mxx_ru/cpp/toolset.rb
175
+ - lib/mxx_ru/cpp/toolsets
176
+ - lib/mxx_ru/cpp/toolsets/bcc_win32_5.rb
177
+ - lib/mxx_ru/cpp/toolsets/bcc_win32_family.rb
178
+ - lib/mxx_ru/cpp/toolsets/c89_etk_nsk.rb
179
+ - lib/mxx_ru/cpp/toolsets/c89_nsk.rb
180
+ - lib/mxx_ru/cpp/toolsets/c89_nsk_family.rb
181
+ - lib/mxx_ru/cpp/toolsets/gcc_cygwin.rb
182
+ - lib/mxx_ru/cpp/toolsets/gcc_family.rb
183
+ - lib/mxx_ru/cpp/toolsets/gcc_linux.rb
184
+ - lib/mxx_ru/cpp/toolsets/gcc_mingw.rb
185
+ - lib/mxx_ru/cpp/toolsets/gcc_sparc_solaris.rb
186
+ - lib/mxx_ru/cpp/toolsets/vc7.rb
187
+ - lib/mxx_ru/cpp/toolsets/vc8.rb
188
+ - lib/mxx_ru/cpp/toolsets/vc_family.rb
189
+ - examples/exe_and_lib
190
+ - examples/exe_dll_lib
191
+ - examples/exe_dll_lib_2
192
+ - examples/simple_exe
193
+ - examples/exe_and_lib/main.cpp
194
+ - examples/exe_and_lib/prj.rb
195
+ - examples/exe_and_lib/say.cpp
196
+ - examples/exe_and_lib/say.hpp
197
+ - examples/exe_and_lib/say.rb
198
+ - examples/exe_dll_lib/inout.cpp
199
+ - examples/exe_dll_lib/inout.hpp
200
+ - examples/exe_dll_lib/inout.rb
201
+ - examples/exe_dll_lib/main.cpp
202
+ - examples/exe_dll_lib/prj.rb
203
+ - examples/exe_dll_lib/say.cpp
204
+ - examples/exe_dll_lib/say.hpp
205
+ - examples/exe_dll_lib/say.rb
206
+ - examples/exe_dll_lib_2/build.rb
207
+ - examples/exe_dll_lib_2/inout
208
+ - examples/exe_dll_lib_2/lib
209
+ - examples/exe_dll_lib_2/main
210
+ - examples/exe_dll_lib_2/say
211
+ - examples/exe_dll_lib_2/inout/inout.cpp
212
+ - examples/exe_dll_lib_2/inout/inout.hpp
213
+ - examples/exe_dll_lib_2/inout/o
214
+ - examples/exe_dll_lib_2/inout/prj.rb
215
+ - examples/exe_dll_lib_2/main/main.cpp
216
+ - examples/exe_dll_lib_2/main/o
217
+ - examples/exe_dll_lib_2/main/prj.rb
218
+ - examples/exe_dll_lib_2/say/o
219
+ - examples/exe_dll_lib_2/say/prj.rb
220
+ - examples/exe_dll_lib_2/say/say.cpp
221
+ - examples/exe_dll_lib_2/say/say.hpp
222
+ - examples/simple_exe/main.cpp
223
+ - examples/simple_exe/prj.rb
224
+ - README
225
+ - Rakefile
226
+ - COPYING
227
+ - NEWS
228
+ test_files: []
229
+ rdoc_options:
230
+ - "-S"
231
+ - "--main"
232
+ - README
233
+ extra_rdoc_files:
234
+ - README
235
+ - Rakefile
236
+ - COPYING
237
+ - NEWS
238
+ executables: []
239
+ extensions: []
240
+ requirements: []
241
+ dependencies: []