Mxx_ru 1.5.2 → 1.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +0 -1
- data/lib/mxx_ru/cpp/detect_toolset.rb +10 -7
- data/lib/mxx_ru/cpp/toolsets/icc_win.rb +63 -0
- data/lib/mxx_ru/cpp/toolsets/vc10.rb +58 -0
- data/lib/mxx_ru/cpp/toolsets/vc9.rb +0 -3
- data/lib/mxx_ru/version.rb +1 -1
- data/tests/mxx_ru/vc8/tc_actual_manifest.rb +24 -0
- metadata +126 -20
data/Rakefile
CHANGED
|
@@ -148,13 +148,16 @@ module MxxRu
|
|
|
148
148
|
# Assume that GCC is default compiler on Linux.
|
|
149
149
|
"gcc_linux"
|
|
150
150
|
else
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
151
|
+
if ENV[ 'ICPP_COMPOSER2011' ]
|
|
152
|
+
'icc_win'
|
|
153
|
+
elsif ENV[ 'VS100COMNTOOLS' ]
|
|
154
|
+
'vc10'
|
|
155
|
+
elsif ENV[ 'VS90COMNTOOLS' ]
|
|
156
|
+
'vc9'
|
|
157
|
+
elsif ENV[ 'VS80COMNTOOLS' ]
|
|
158
|
+
'vc8'
|
|
159
|
+
elsif ENV[ 'VS71COMNTOOLS' ]
|
|
160
|
+
'vc7'
|
|
158
161
|
end
|
|
159
162
|
end
|
|
160
163
|
end
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
#--
|
|
2
|
+
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
|
3
|
+
# Copyright (c) 2004-2006, JSC Intervale
|
|
4
|
+
# Copyright (c) 2006-2008, The Mxx_ru Project
|
|
5
|
+
# All rights reserved.
|
|
6
|
+
#
|
|
7
|
+
# Redistribution and use in source and binary forms, with or without modification,
|
|
8
|
+
# are permitted provided that the following conditions are met:
|
|
9
|
+
#
|
|
10
|
+
# 1. Redistributions of source code must retain the above copyright notice,
|
|
11
|
+
# this list of conditions and the following disclaimer.
|
|
12
|
+
# 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
13
|
+
# this list of conditions and the following disclaimer in the documentation
|
|
14
|
+
# and/or other materials provided with the distribution.
|
|
15
|
+
# 3. The name of the author may not be used to endorse or promote products derived
|
|
16
|
+
# from this software without specific prior written permission.
|
|
17
|
+
#
|
|
18
|
+
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
19
|
+
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
20
|
+
# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
|
|
21
|
+
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
+
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
23
|
+
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
24
|
+
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
25
|
+
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
26
|
+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
+
#++
|
|
28
|
+
|
|
29
|
+
require 'mxx_ru/cpp/target'
|
|
30
|
+
require 'mxx_ru/cpp/toolsets/vc8_family'
|
|
31
|
+
|
|
32
|
+
module MxxRu
|
|
33
|
+
module Cpp
|
|
34
|
+
module Toolsets
|
|
35
|
+
|
|
36
|
+
# Toolset implementation for Intel C++ Compiler for Windows.
|
|
37
|
+
#
|
|
38
|
+
class IccWin < MxxRu::Cpp::Toolsets::Vc8Family
|
|
39
|
+
def initialize( a_name = "icc_win" )
|
|
40
|
+
super( a_name )
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
def compiler_name
|
|
44
|
+
return tag( COMPILER_NAME_TAG, "icl" )
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
# Returns linker name.
|
|
48
|
+
def linker_name
|
|
49
|
+
return tag( LINKER_NAME_TAG, "xilink" )
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
# Returns librarian name.
|
|
53
|
+
def librarian_name
|
|
54
|
+
return tag( LIBRARIAN_NAME_TAG, "xilib" )
|
|
55
|
+
end
|
|
56
|
+
end # class IccWin
|
|
57
|
+
|
|
58
|
+
end # module Toolsets
|
|
59
|
+
end # module Cpp
|
|
60
|
+
end # module MxxRu
|
|
61
|
+
|
|
62
|
+
MxxRu::Cpp::setup_toolset( MxxRu::Cpp::Toolsets::IccWin.new )
|
|
63
|
+
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
#--
|
|
2
|
+
# Copyright (c) 1996-2004, Yauheni Akhotnikau
|
|
3
|
+
# Copyright (c) 2004-2006, JSC Intervale
|
|
4
|
+
# Copyright (c) 2006-2008, The Mxx_ru Project
|
|
5
|
+
# All rights reserved.
|
|
6
|
+
#
|
|
7
|
+
# Redistribution and use in source and binary forms, with or without modification,
|
|
8
|
+
# are permitted provided that the following conditions are met:
|
|
9
|
+
#
|
|
10
|
+
# 1. Redistributions of source code must retain the above copyright notice,
|
|
11
|
+
# this list of conditions and the following disclaimer.
|
|
12
|
+
# 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
13
|
+
# this list of conditions and the following disclaimer in the documentation
|
|
14
|
+
# and/or other materials provided with the distribution.
|
|
15
|
+
# 3. The name of the author may not be used to endorse or promote products derived
|
|
16
|
+
# from this software without specific prior written permission.
|
|
17
|
+
#
|
|
18
|
+
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
19
|
+
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
20
|
+
# AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
|
|
21
|
+
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
22
|
+
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
23
|
+
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
24
|
+
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
25
|
+
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
26
|
+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
+
#++
|
|
28
|
+
|
|
29
|
+
require 'ostruct'
|
|
30
|
+
require 'set'
|
|
31
|
+
|
|
32
|
+
require 'mxx_ru/cpp/target'
|
|
33
|
+
require 'mxx_ru/cpp/toolsets/vc8_family'
|
|
34
|
+
|
|
35
|
+
module MxxRu
|
|
36
|
+
module Cpp
|
|
37
|
+
module Toolsets
|
|
38
|
+
|
|
39
|
+
# Toolset implementation for Visual C++ 10.0 (Visual Studio 2010)
|
|
40
|
+
#
|
|
41
|
+
# Setups following tags:
|
|
42
|
+
# [_ver_hi_] high version number. Value: 10.
|
|
43
|
+
# [_ver_lo_] low version number. Value: 0.
|
|
44
|
+
class Vc10 < MxxRu::Cpp::Toolsets::Vc8Family
|
|
45
|
+
def initialize( a_name = "vc" )
|
|
46
|
+
super( a_name )
|
|
47
|
+
|
|
48
|
+
setup_tag( "ver_hi", "10" )
|
|
49
|
+
setup_tag( "ver_lo", "0" )
|
|
50
|
+
end
|
|
51
|
+
end # class Vc10
|
|
52
|
+
|
|
53
|
+
end # module Toolsets
|
|
54
|
+
end # module Cpp
|
|
55
|
+
end # module MxxRu
|
|
56
|
+
|
|
57
|
+
MxxRu::Cpp::setup_toolset( MxxRu::Cpp::Toolsets::Vc10.new )
|
|
58
|
+
|
data/lib/mxx_ru/version.rb
CHANGED
|
@@ -3,14 +3,38 @@ require 'test/unit'
|
|
|
3
3
|
require 'mxx_ru/cpp'
|
|
4
4
|
require 'mxx_ru/cpp/toolsets/vc8'
|
|
5
5
|
|
|
6
|
+
module MxxRu
|
|
7
|
+
module Cpp
|
|
8
|
+
module Toolsets
|
|
9
|
+
|
|
10
|
+
# Extension of Vc8Family class for possibility of
|
|
11
|
+
# default manifest restoring.
|
|
12
|
+
#
|
|
13
|
+
class Vc8Family
|
|
14
|
+
def self.restore_default_manifest(manifest)
|
|
15
|
+
@@default_manifest = manifest
|
|
16
|
+
end
|
|
17
|
+
end # class Vc8Family
|
|
18
|
+
|
|
19
|
+
end # module Toolsets
|
|
20
|
+
end # module Cpp
|
|
21
|
+
end # module MxxRu
|
|
22
|
+
|
|
6
23
|
class TC_ActualManifest < Test::Unit::TestCase
|
|
7
24
|
def initialize( test_method_name )
|
|
8
25
|
super test_method_name
|
|
26
|
+
end
|
|
9
27
|
|
|
28
|
+
def setup
|
|
29
|
+
@old_manifest = Mxx_ru::Cpp::Toolsets::Vc8::default_manifest
|
|
10
30
|
# Default manifest should not be used.
|
|
11
31
|
Mxx_ru::Cpp::Toolsets::Vc8::manifest nil
|
|
12
32
|
end
|
|
13
33
|
|
|
34
|
+
def teardown
|
|
35
|
+
Mxx_ru::Cpp::Toolsets::Vc8::restore_default_manifest @old_manifest
|
|
36
|
+
end
|
|
37
|
+
|
|
14
38
|
def make_exe_target( prj_alias )
|
|
15
39
|
Mxx_ru::Cpp::Exe_target.new( prj_alias ) {
|
|
16
40
|
target 'sample'
|
metadata
CHANGED
|
@@ -1,13 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: Mxx_ru
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
5
|
-
prerelease: false
|
|
6
|
-
segments:
|
|
7
|
-
- 1
|
|
8
|
-
- 5
|
|
9
|
-
- 2
|
|
10
|
-
version: 1.5.2
|
|
4
|
+
version: 1.5.3
|
|
11
5
|
platform: ruby
|
|
12
6
|
authors:
|
|
13
7
|
- The Mxx_ru Project
|
|
@@ -15,7 +9,7 @@ autorequire:
|
|
|
15
9
|
bindir: bin
|
|
16
10
|
cert_chain: []
|
|
17
11
|
|
|
18
|
-
date:
|
|
12
|
+
date: 2011-04-08 00:00:00 +04:00
|
|
19
13
|
default_executable:
|
|
20
14
|
dependencies: []
|
|
21
15
|
|
|
@@ -32,76 +26,126 @@ extra_rdoc_files:
|
|
|
32
26
|
- NEWS
|
|
33
27
|
files:
|
|
34
28
|
- bin/mxxrugen
|
|
29
|
+
- tests/c
|
|
30
|
+
- tests/cpp
|
|
31
|
+
- tests/cpp/cpp_sources_glob
|
|
35
32
|
- tests/cpp/cpp_sources_glob/build.rb
|
|
33
|
+
- tests/cpp/cpp_sources_glob/some
|
|
34
|
+
- tests/cpp/cpp_sources_glob/some/module
|
|
35
|
+
- tests/cpp/cpp_sources_glob/some/module/1
|
|
36
36
|
- tests/cpp/cpp_sources_glob/some/module/1/f1.cpp
|
|
37
|
+
- tests/cpp/cpp_sources_glob/some/module/1/o
|
|
38
|
+
- tests/cpp/cpp_sources_glob/some/module/2
|
|
37
39
|
- tests/cpp/cpp_sources_glob/some/module/2/f2.cpp
|
|
40
|
+
- tests/cpp/cpp_sources_glob/some/module/2/o
|
|
41
|
+
- tests/cpp/cpp_sources_glob/some/module/3
|
|
38
42
|
- tests/cpp/cpp_sources_glob/some/module/3/f3.cpp
|
|
43
|
+
- tests/cpp/cpp_sources_glob/some/module/3/o
|
|
44
|
+
- tests/cpp/cpp_sources_glob/some/module/4
|
|
39
45
|
- tests/cpp/cpp_sources_glob/some/module/4/f4.cpp
|
|
46
|
+
- tests/cpp/cpp_sources_glob/some/module/4/o
|
|
40
47
|
- tests/cpp/cpp_sources_glob/some/module/funcs.hpp
|
|
41
48
|
- tests/cpp/cpp_sources_glob/some/module/main.cpp
|
|
49
|
+
- tests/cpp/cpp_sources_glob/some/module/o
|
|
42
50
|
- tests/cpp/cpp_sources_glob/some/module/prj.rb
|
|
43
51
|
- tests/cpp/cpp_sources_glob/tc_cpp_sources_glob.rb
|
|
52
|
+
- tests/cpp/custom_target_prefix
|
|
44
53
|
- tests/cpp/custom_target_prefix/dll.cpp
|
|
45
54
|
- tests/cpp/custom_target_prefix/dll.rb
|
|
55
|
+
- tests/cpp/custom_target_prefix/o
|
|
46
56
|
- tests/cpp/custom_target_prefix/tc_custom_target_prefix.rb
|
|
57
|
+
- tests/cpp/lib_from_lib_dependecies
|
|
47
58
|
- tests/cpp/lib_from_lib_dependecies/a.cpp
|
|
48
59
|
- tests/cpp/lib_from_lib_dependecies/a.rb
|
|
49
60
|
- tests/cpp/lib_from_lib_dependecies/b.cpp
|
|
50
61
|
- tests/cpp/lib_from_lib_dependecies/b.rb
|
|
51
62
|
- tests/cpp/lib_from_lib_dependecies/checker.cpp
|
|
52
63
|
- tests/cpp/lib_from_lib_dependecies/checker.rb
|
|
64
|
+
- tests/cpp/lib_from_lib_dependecies/etalon
|
|
53
65
|
- tests/cpp/lib_from_lib_dependecies/etalon/first.txt
|
|
54
66
|
- tests/cpp/lib_from_lib_dependecies/etalon/second.txt
|
|
55
67
|
- tests/cpp/lib_from_lib_dependecies/first.ut.rb
|
|
68
|
+
- tests/cpp/lib_from_lib_dependecies/o
|
|
69
|
+
- tests/cpp/lib_from_lib_dependecies/out
|
|
56
70
|
- tests/cpp/lib_from_lib_dependecies/second.ut.rb
|
|
57
71
|
- tests/cpp/lib_from_lib_dependecies/tc_checker.rb
|
|
72
|
+
- tests/cpp/mswin_res_dll
|
|
58
73
|
- tests/cpp/mswin_res_dll/build.rb
|
|
59
74
|
- tests/cpp/mswin_res_dll/dll.cpp
|
|
60
75
|
- tests/cpp/mswin_res_dll/dll.rb
|
|
61
76
|
- tests/cpp/mswin_res_dll/dll.rc
|
|
77
|
+
- tests/cpp/mswin_res_dll/h
|
|
62
78
|
- tests/cpp/mswin_res_dll/h/dll.hpp
|
|
63
79
|
- tests/cpp/mswin_res_dll/h/res.h
|
|
64
80
|
- tests/cpp/mswin_res_dll/main.cpp
|
|
65
81
|
- tests/cpp/mswin_res_dll/main.rb
|
|
82
|
+
- tests/cpp/mswin_res_dll/o
|
|
66
83
|
- tests/cpp/mswin_res_dll/o/dll.o
|
|
84
|
+
- tests/cpp/mswin_res_dll/res
|
|
67
85
|
- tests/cpp/mswin_res_dll/res/tree_fol.bmp
|
|
68
86
|
- tests/cpp/mswin_res_dll/res/tree_state_1.bmp
|
|
69
87
|
- tests/cpp/mswin_res_dll/res/tree_state_2.bmp
|
|
70
88
|
- tests/cpp/mswin_res_dll/tc_mswin_res_dll.rb
|
|
89
|
+
- tests/cpp/mswin_res_exe
|
|
71
90
|
- tests/cpp/mswin_res_exe/build.rb
|
|
91
|
+
- tests/cpp/mswin_res_exe/h
|
|
72
92
|
- tests/cpp/mswin_res_exe/h/res.h
|
|
93
|
+
- tests/cpp/mswin_res_exe/o
|
|
94
|
+
- tests/cpp/mswin_res_exe/res
|
|
73
95
|
- tests/cpp/mswin_res_exe/res/tree_fol.bmp
|
|
74
96
|
- tests/cpp/mswin_res_exe/res/tree_state_1.bmp
|
|
75
97
|
- tests/cpp/mswin_res_exe/res/tree_state_2.bmp
|
|
98
|
+
- tests/cpp/mswin_res_exe/src
|
|
76
99
|
- tests/cpp/mswin_res_exe/src/main.cpp
|
|
77
100
|
- tests/cpp/mswin_res_exe/src/main.rc
|
|
101
|
+
- tests/cpp/mswin_res_exe/src/o
|
|
78
102
|
- tests/cpp/mswin_res_exe/src/o/main.o
|
|
79
103
|
- tests/cpp/mswin_res_exe/tc_mswin_res_exe.rb
|
|
104
|
+
- tests/cpp/o
|
|
105
|
+
- tests/cpp/rucodegen
|
|
106
|
+
- tests/cpp/rucodegen/h
|
|
80
107
|
- tests/cpp/rucodegen/host_config.cpp
|
|
81
108
|
- tests/cpp/rucodegen/host_config.rb
|
|
109
|
+
- tests/cpp/rucodegen/impl
|
|
82
110
|
- tests/cpp/rucodegen/impl/conn_params.cpp
|
|
83
111
|
- tests/cpp/rucodegen/impl/conn_params.rb
|
|
112
|
+
- tests/cpp/rucodegen/impl/h
|
|
84
113
|
- tests/cpp/rucodegen/impl/h/conn_params.hpp
|
|
114
|
+
- tests/cpp/rucodegen/impl/o
|
|
115
|
+
- tests/cpp/rucodegen/o
|
|
85
116
|
- tests/cpp/rucodegen/prj.rb
|
|
86
117
|
- tests/cpp/rucodegen/tc_rucodegen.rb
|
|
118
|
+
- tests/cpp/rucodegen.embedded
|
|
119
|
+
- tests/cpp/rucodegen.embedded/h
|
|
87
120
|
- tests/cpp/rucodegen.embedded/host_config.cpp
|
|
121
|
+
- tests/cpp/rucodegen.embedded/impl
|
|
88
122
|
- tests/cpp/rucodegen.embedded/impl/conn_params.cpp
|
|
89
123
|
- tests/cpp/rucodegen.embedded/impl/conn_params.rb
|
|
124
|
+
- tests/cpp/rucodegen.embedded/impl/h
|
|
90
125
|
- tests/cpp/rucodegen.embedded/impl/h/conn_params.hpp
|
|
126
|
+
- tests/cpp/rucodegen.embedded/impl/o
|
|
127
|
+
- tests/cpp/rucodegen.embedded/o
|
|
91
128
|
- tests/cpp/rucodegen.embedded/prj.rb
|
|
92
129
|
- tests/cpp/rucodegen.embedded/tc_rucodegen.rb
|
|
130
|
+
- tests/cpp/textfile_unittest
|
|
93
131
|
- tests/cpp/textfile_unittest/build.rb
|
|
132
|
+
- tests/cpp/textfile_unittest/etalons
|
|
94
133
|
- tests/cpp/textfile_unittest/etalons/out_0.txt
|
|
95
134
|
- tests/cpp/textfile_unittest/etalons/out_1.txt
|
|
96
135
|
- tests/cpp/textfile_unittest/etalons/out_128.txt
|
|
97
136
|
- tests/cpp/textfile_unittest/main.cpp
|
|
137
|
+
- tests/cpp/textfile_unittest/o
|
|
98
138
|
- tests/cpp/textfile_unittest/prj.rb
|
|
99
139
|
- tests/cpp/textfile_unittest/prj.ut.rb
|
|
100
140
|
- tests/cpp/textfile_unittest/tc_textfile_unittest.rb
|
|
101
141
|
- tests/cpp/toolset_name.rb
|
|
142
|
+
- tests/cpp/vc_cleanup
|
|
102
143
|
- tests/cpp/vc_cleanup/dll_hi.cpp
|
|
103
144
|
- tests/cpp/vc_cleanup/exe_hi.cpp
|
|
145
|
+
- tests/cpp/vc_cleanup/lib
|
|
146
|
+
- tests/cpp/vc_cleanup/lib/simple_target_root
|
|
104
147
|
- tests/cpp/vc_cleanup/lib_hi.cpp
|
|
148
|
+
- tests/cpp/vc_cleanup/o
|
|
105
149
|
- tests/cpp/vc_cleanup/prj_dll_no_implib.rb
|
|
106
150
|
- tests/cpp/vc_cleanup/prj_dll_no_implib_simple_target_root.rb
|
|
107
151
|
- tests/cpp/vc_cleanup/prj_dll_with_implib.rb
|
|
@@ -110,22 +154,34 @@ files:
|
|
|
110
154
|
- tests/cpp/vc_cleanup/prj_exe_no_implib_simple_target_root.rb
|
|
111
155
|
- tests/cpp/vc_cleanup/prj_lib.rb
|
|
112
156
|
- tests/cpp/vc_cleanup/prj_lib_with_simple_target_root.rb
|
|
157
|
+
- tests/cpp/vc_cleanup/simple_target_root
|
|
113
158
|
- tests/cpp/vc_cleanup/tc_vc_cleanup.rb
|
|
159
|
+
- tests/darwin
|
|
160
|
+
- tests/darwin/bundle_target_type
|
|
114
161
|
- tests/darwin/bundle_target_type/my_test_bundle.c
|
|
115
162
|
- tests/darwin/bundle_target_type/my_test_bundle.rb
|
|
116
163
|
- tests/darwin/bundle_target_type/tc_normal_build.rb
|
|
164
|
+
- tests/mxx_ru
|
|
165
|
+
- tests/mxx_ru/binary_library
|
|
117
166
|
- tests/mxx_ru/binary_library/tc_binary_library.rb
|
|
118
167
|
- tests/mxx_ru/binary_library/tc_binary_target_lib_methods.rb
|
|
168
|
+
- tests/mxx_ru/change_default_value
|
|
169
|
+
- tests/mxx_ru/change_default_value/ignoring_by_build_root
|
|
119
170
|
- tests/mxx_ru/change_default_value/ignoring_by_build_root/build.rb
|
|
120
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
|
|
121
173
|
- tests/mxx_ru/change_default_value/ignoring_by_child_1/build.rb
|
|
122
174
|
- tests/mxx_ru/change_default_value/ignoring_by_child_1/child_1.rb
|
|
123
175
|
- tests/mxx_ru/change_default_value/ignoring_by_child_1/child_2.rb
|
|
176
|
+
- tests/mxx_ru/change_default_value/ok
|
|
124
177
|
- tests/mxx_ru/change_default_value/ok/build.rb
|
|
125
178
|
- tests/mxx_ru/change_default_value/ok/child_1.rb
|
|
179
|
+
- tests/mxx_ru/generators
|
|
180
|
+
- tests/mxx_ru/generators/cpp
|
|
126
181
|
- tests/mxx_ru/generators/cpp/tc_generator.rb
|
|
127
182
|
- tests/mxx_ru/generators/cpp/tc_options.rb
|
|
128
183
|
- tests/mxx_ru/generators/cpp/tc_template_params.rb
|
|
184
|
+
- tests/mxx_ru/lib_collection
|
|
129
185
|
- tests/mxx_ru/lib_collection/a.cpp
|
|
130
186
|
- tests/mxx_ru/lib_collection/a.hpp
|
|
131
187
|
- tests/mxx_ru/lib_collection/a.rb
|
|
@@ -157,35 +213,49 @@ files:
|
|
|
157
213
|
- tests/mxx_ru/lib_collection/i.rb
|
|
158
214
|
- tests/mxx_ru/lib_collection/main.cpp
|
|
159
215
|
- tests/mxx_ru/lib_collection/main.rb
|
|
216
|
+
- tests/mxx_ru/lib_collection/o
|
|
160
217
|
- tests/mxx_ru/lib_collection/tc_lib_collection.rb
|
|
218
|
+
- tests/mxx_ru/lib_path
|
|
161
219
|
- tests/mxx_ru/lib_path/build.rb
|
|
162
220
|
- tests/mxx_ru/lib_path/bye.c
|
|
163
221
|
- tests/mxx_ru/lib_path/bye.rb
|
|
222
|
+
- tests/mxx_ru/lib_path/bye_lib
|
|
164
223
|
- tests/mxx_ru/lib_path/hi.c
|
|
165
224
|
- tests/mxx_ru/lib_path/hi.rb
|
|
225
|
+
- tests/mxx_ru/lib_path/hi_lib
|
|
166
226
|
- tests/mxx_ru/lib_path/main.c
|
|
167
227
|
- tests/mxx_ru/lib_path/main.rb
|
|
228
|
+
- tests/mxx_ru/lib_path/o
|
|
168
229
|
- tests/mxx_ru/lib_path/tc_lib_path.rb
|
|
230
|
+
- tests/mxx_ru/obj_placements
|
|
169
231
|
- tests/mxx_ru/obj_placements/tc_custom_subdir.rb
|
|
232
|
+
- tests/mxx_ru/opt_lib_ext
|
|
170
233
|
- tests/mxx_ru/opt_lib_ext/build.rb
|
|
171
234
|
- tests/mxx_ru/opt_lib_ext/hi.c
|
|
172
235
|
- tests/mxx_ru/opt_lib_ext/hi.h
|
|
173
236
|
- tests/mxx_ru/opt_lib_ext/hi.rb
|
|
174
237
|
- tests/mxx_ru/opt_lib_ext/main.c
|
|
238
|
+
- tests/mxx_ru/opt_lib_ext/o
|
|
175
239
|
- tests/mxx_ru/opt_lib_ext/tc_opt_lib_ext.rb
|
|
176
240
|
- tests/mxx_ru/opt_lib_ext/test-no-ext.rb
|
|
177
241
|
- tests/mxx_ru/opt_lib_ext/test-with-ext.rb
|
|
242
|
+
- tests/mxx_ru/plural_form_methods
|
|
178
243
|
- tests/mxx_ru/plural_form_methods/tc.rb
|
|
244
|
+
- tests/mxx_ru/qt_gen
|
|
179
245
|
- tests/mxx_ru/qt_gen/tc_uic_result_subdir.rb
|
|
246
|
+
- tests/mxx_ru/target_ext
|
|
180
247
|
- tests/mxx_ru/target_ext/dll_hi.cpp
|
|
181
248
|
- tests/mxx_ru/target_ext/exe_hi.cpp
|
|
182
249
|
- tests/mxx_ru/target_ext/lib_hi.cpp
|
|
250
|
+
- tests/mxx_ru/target_ext/o
|
|
183
251
|
- tests/mxx_ru/target_ext/prj_dll.rb
|
|
184
252
|
- tests/mxx_ru/target_ext/prj_exe.rb
|
|
185
253
|
- tests/mxx_ru/target_ext/prj_lib.rb
|
|
186
254
|
- tests/mxx_ru/target_ext/tc_target_ext.rb
|
|
187
255
|
- tests/mxx_ru/tc_makestyle_generator.rb
|
|
256
|
+
- tests/mxx_ru/toolset
|
|
188
257
|
- tests/mxx_ru/toolset/tc_tag_search.rb
|
|
258
|
+
- tests/mxx_ru/vc8
|
|
189
259
|
- tests/mxx_ru/vc8/tc_actual_manifest.rb
|
|
190
260
|
- tests/mxx_ru/vc8/tc_append_mt_commands.rb
|
|
191
261
|
- tests/mxx_ru/vc8/tc_default_manifest.rb
|
|
@@ -193,21 +263,28 @@ files:
|
|
|
193
263
|
- tests/mxx_ru/vc8/tc_drop_default_manifest.rb
|
|
194
264
|
- tests/mxx_ru/vc8/tc_invalid_params.rb
|
|
195
265
|
- tests/mxx_ru/vc8/ts_vc8.rb
|
|
266
|
+
- tests/qt
|
|
267
|
+
- tests/qt/aclock
|
|
196
268
|
- tests/qt/aclock/aclock.cpp
|
|
197
269
|
- tests/qt/aclock/aclock.h
|
|
198
270
|
- tests/qt/aclock/main.cpp
|
|
199
271
|
- tests/qt/aclock/prj.rb
|
|
272
|
+
- tests/qt/iconview
|
|
200
273
|
- tests/qt/iconview/main.cpp
|
|
201
274
|
- tests/qt/iconview/prj.rb
|
|
275
|
+
- tests/qt/toplevel
|
|
202
276
|
- tests/qt/toplevel/main.cpp
|
|
203
277
|
- tests/qt/toplevel/options.ui
|
|
204
278
|
- tests/qt/toplevel/prj.rb
|
|
205
279
|
- tests/test_with_compilation.rb
|
|
280
|
+
- tests/unix
|
|
281
|
+
- tests/unix/lib_linking_mode
|
|
206
282
|
- tests/unix/lib_linking_mode/a.hpp
|
|
207
283
|
- tests/unix/lib_linking_mode/a_shared.cpp
|
|
208
284
|
- tests/unix/lib_linking_mode/a_shared.rb
|
|
209
285
|
- tests/unix/lib_linking_mode/a_static.cpp
|
|
210
286
|
- tests/unix/lib_linking_mode/a_static.rb
|
|
287
|
+
- tests/unix/lib_linking_mode/etalon
|
|
211
288
|
- tests/unix/lib_linking_mode/etalon/shared.txt
|
|
212
289
|
- tests/unix/lib_linking_mode/etalon/static.txt
|
|
213
290
|
- tests/unix/lib_linking_mode/main.impl.cpp
|
|
@@ -226,8 +303,11 @@ files:
|
|
|
226
303
|
- tests/unix/lib_linking_mode/main_static_2.cpp
|
|
227
304
|
- tests/unix/lib_linking_mode/main_static_2.rb
|
|
228
305
|
- tests/unix/lib_linking_mode/main_static_2.ut.rb
|
|
306
|
+
- tests/unix/lib_linking_mode/o
|
|
307
|
+
- tests/unix/lib_linking_mode/out
|
|
229
308
|
- tests/unix/lib_linking_mode/tc_conflicted_build.rb
|
|
230
309
|
- tests/unix/lib_linking_mode/tc_normal_build.rb
|
|
310
|
+
- tests/unix/lib_order
|
|
231
311
|
- tests/unix/lib_order/a.cpp
|
|
232
312
|
- tests/unix/lib_order/a.hpp
|
|
233
313
|
- tests/unix/lib_order/a.rb
|
|
@@ -244,18 +324,21 @@ files:
|
|
|
244
324
|
- tests/unix/lib_order/main.cpp
|
|
245
325
|
- tests/unix/lib_order/main.rb
|
|
246
326
|
- tests/unix/lib_order/tc_normal_build.rb
|
|
327
|
+
- lib/mxx_ru
|
|
247
328
|
- lib/mxx_ru/abstract_target.rb
|
|
248
329
|
- lib/mxx_ru/binary_library.rb
|
|
249
330
|
- lib/mxx_ru/binary_target.rb
|
|
250
331
|
- lib/mxx_ru/binary_unittest.rb
|
|
251
332
|
- lib/mxx_ru/cmd_line_option_processor.rb
|
|
252
333
|
- lib/mxx_ru/compat.rb
|
|
334
|
+
- lib/mxx_ru/cpp
|
|
253
335
|
- lib/mxx_ru/cpp/analyzer.rb
|
|
254
336
|
- lib/mxx_ru/cpp/composite.rb
|
|
255
337
|
- lib/mxx_ru/cpp/detect_toolset.rb
|
|
256
338
|
- lib/mxx_ru/cpp/lib_collection.rb
|
|
257
339
|
- lib/mxx_ru/cpp/mode.rb
|
|
258
340
|
- lib/mxx_ru/cpp/obj_placement.rb
|
|
341
|
+
- lib/mxx_ru/cpp/obj_placements
|
|
259
342
|
- lib/mxx_ru/cpp/obj_placements/custom_subdir.rb
|
|
260
343
|
- lib/mxx_ru/cpp/qt.rb
|
|
261
344
|
- lib/mxx_ru/cpp/qt4.rb
|
|
@@ -265,6 +348,7 @@ files:
|
|
|
265
348
|
- lib/mxx_ru/cpp/source_file.rb
|
|
266
349
|
- lib/mxx_ru/cpp/target.rb
|
|
267
350
|
- lib/mxx_ru/cpp/toolset.rb
|
|
351
|
+
- lib/mxx_ru/cpp/toolsets
|
|
268
352
|
- lib/mxx_ru/cpp/toolsets/bcc_win32_5.rb
|
|
269
353
|
- lib/mxx_ru/cpp/toolsets/bcc_win32_family.rb
|
|
270
354
|
- lib/mxx_ru/cpp/toolsets/c89_etk_nsk.rb
|
|
@@ -277,6 +361,8 @@ files:
|
|
|
277
361
|
- lib/mxx_ru/cpp/toolsets/gcc_mingw.rb
|
|
278
362
|
- lib/mxx_ru/cpp/toolsets/gcc_sparc_solaris.rb
|
|
279
363
|
- lib/mxx_ru/cpp/toolsets/gcc_unix_family.rb
|
|
364
|
+
- lib/mxx_ru/cpp/toolsets/icc_win.rb
|
|
365
|
+
- lib/mxx_ru/cpp/toolsets/vc10.rb
|
|
280
366
|
- lib/mxx_ru/cpp/toolsets/vc7.rb
|
|
281
367
|
- lib/mxx_ru/cpp/toolsets/vc8.rb
|
|
282
368
|
- lib/mxx_ru/cpp/toolsets/vc8_family.rb
|
|
@@ -284,15 +370,25 @@ files:
|
|
|
284
370
|
- lib/mxx_ru/cpp/toolsets/vc_family.rb
|
|
285
371
|
- lib/mxx_ru/cpp.rb
|
|
286
372
|
- lib/mxx_ru/ex.rb
|
|
373
|
+
- lib/mxx_ru/generators
|
|
374
|
+
- lib/mxx_ru/generators/bin-unittest
|
|
287
375
|
- lib/mxx_ru/generators/bin-unittest/g.rb
|
|
288
376
|
- lib/mxx_ru/generators/bin-unittest/template.erb
|
|
377
|
+
- lib/mxx_ru/generators/cpp-build-root
|
|
289
378
|
- lib/mxx_ru/generators/cpp-build-root/g.rb
|
|
290
379
|
- lib/mxx_ru/generators/cpp-build-root/template.erb
|
|
380
|
+
- lib/mxx_ru/generators/cpp-composite
|
|
291
381
|
- lib/mxx_ru/generators/cpp-composite/g.rb
|
|
382
|
+
- lib/mxx_ru/generators/cpp-dll
|
|
292
383
|
- lib/mxx_ru/generators/cpp-dll/g.rb
|
|
384
|
+
- lib/mxx_ru/generators/cpp-exe
|
|
293
385
|
- lib/mxx_ru/generators/cpp-exe/g.rb
|
|
386
|
+
- lib/mxx_ru/generators/cpp-lib
|
|
294
387
|
- lib/mxx_ru/generators/cpp-lib/g.rb
|
|
388
|
+
- lib/mxx_ru/generators/cpp-lib-collection
|
|
295
389
|
- lib/mxx_ru/generators/cpp-lib-collection/g.rb
|
|
390
|
+
- lib/mxx_ru/generators/impl
|
|
391
|
+
- lib/mxx_ru/generators/impl/cpp
|
|
296
392
|
- lib/mxx_ru/generators/impl/cpp/generation.rb
|
|
297
393
|
- lib/mxx_ru/generators/impl/cpp/template.erb
|
|
298
394
|
- lib/mxx_ru/generators/impl/std_receiver.rb
|
|
@@ -301,11 +397,13 @@ files:
|
|
|
301
397
|
- lib/mxx_ru/textfile_unittest.rb
|
|
302
398
|
- lib/mxx_ru/util.rb
|
|
303
399
|
- lib/mxx_ru/version.rb
|
|
400
|
+
- examples/exe_and_lib
|
|
304
401
|
- examples/exe_and_lib/main.cpp
|
|
305
402
|
- examples/exe_and_lib/prj.rb
|
|
306
403
|
- examples/exe_and_lib/say.cpp
|
|
307
404
|
- examples/exe_and_lib/say.hpp
|
|
308
405
|
- examples/exe_and_lib/say.rb
|
|
406
|
+
- examples/exe_dll_lib
|
|
309
407
|
- examples/exe_dll_lib/inout.cpp
|
|
310
408
|
- examples/exe_dll_lib/inout.hpp
|
|
311
409
|
- examples/exe_dll_lib/inout.rb
|
|
@@ -314,15 +412,31 @@ files:
|
|
|
314
412
|
- examples/exe_dll_lib/say.cpp
|
|
315
413
|
- examples/exe_dll_lib/say.hpp
|
|
316
414
|
- examples/exe_dll_lib/say.rb
|
|
415
|
+
- examples/exe_dll_lib_2
|
|
416
|
+
- examples/exe_dll_lib_2/bin
|
|
417
|
+
- examples/exe_dll_lib_2/bin/lib
|
|
317
418
|
- examples/exe_dll_lib_2/build.rb
|
|
419
|
+
- examples/exe_dll_lib_2/inout
|
|
318
420
|
- examples/exe_dll_lib_2/inout/inout.cpp
|
|
319
421
|
- examples/exe_dll_lib_2/inout/inout.hpp
|
|
422
|
+
- examples/exe_dll_lib_2/inout/o
|
|
320
423
|
- examples/exe_dll_lib_2/inout/prj.rb
|
|
424
|
+
- examples/exe_dll_lib_2/lib
|
|
425
|
+
- examples/exe_dll_lib_2/main
|
|
321
426
|
- examples/exe_dll_lib_2/main/main.cpp
|
|
427
|
+
- examples/exe_dll_lib_2/main/o
|
|
322
428
|
- examples/exe_dll_lib_2/main/prj.rb
|
|
429
|
+
- examples/exe_dll_lib_2/say
|
|
430
|
+
- examples/exe_dll_lib_2/say/o
|
|
323
431
|
- examples/exe_dll_lib_2/say/prj.rb
|
|
324
432
|
- examples/exe_dll_lib_2/say/say.cpp
|
|
325
433
|
- examples/exe_dll_lib_2/say/say.hpp
|
|
434
|
+
- examples/exe_dll_lib_2/tmp
|
|
435
|
+
- examples/exe_dll_lib_2/tmp/output
|
|
436
|
+
- examples/exe_dll_lib_2/tmp/output/inout
|
|
437
|
+
- examples/exe_dll_lib_2/tmp/output/main
|
|
438
|
+
- examples/exe_dll_lib_2/tmp/output/say
|
|
439
|
+
- examples/simple_exe
|
|
326
440
|
- examples/simple_exe/main.cpp
|
|
327
441
|
- examples/simple_exe/prj.rb
|
|
328
442
|
- THANKS
|
|
@@ -332,8 +446,6 @@ files:
|
|
|
332
446
|
- NEWS
|
|
333
447
|
has_rdoc: true
|
|
334
448
|
homepage: http://www.rubyforge.com/projects/mxx-ru
|
|
335
|
-
licenses: []
|
|
336
|
-
|
|
337
449
|
post_install_message:
|
|
338
450
|
rdoc_options:
|
|
339
451
|
- -S
|
|
@@ -342,29 +454,23 @@ rdoc_options:
|
|
|
342
454
|
require_paths:
|
|
343
455
|
- lib
|
|
344
456
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
345
|
-
none: false
|
|
346
457
|
requirements:
|
|
347
458
|
- - ">="
|
|
348
459
|
- !ruby/object:Gem::Version
|
|
349
|
-
hash: 3
|
|
350
|
-
segments:
|
|
351
|
-
- 0
|
|
352
460
|
version: "0"
|
|
461
|
+
version:
|
|
353
462
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
354
|
-
none: false
|
|
355
463
|
requirements:
|
|
356
464
|
- - ">="
|
|
357
465
|
- !ruby/object:Gem::Version
|
|
358
|
-
hash: 3
|
|
359
|
-
segments:
|
|
360
|
-
- 0
|
|
361
466
|
version: "0"
|
|
467
|
+
version:
|
|
362
468
|
requirements: []
|
|
363
469
|
|
|
364
470
|
rubyforge_project:
|
|
365
|
-
rubygems_version: 1.3.
|
|
471
|
+
rubygems_version: 1.3.1
|
|
366
472
|
signing_key:
|
|
367
|
-
specification_version:
|
|
473
|
+
specification_version: 2
|
|
368
474
|
summary: Mxx_ru (Make++ on Ruby) is a cross-platform build tool
|
|
369
475
|
test_files: []
|
|
370
476
|
|