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