| OLD | NEW |
| 1 # Nonstandard package files for distribution. | 1 # Nonstandard package files for distribution. |
| 2 EXTRA_DIST = | 2 EXTRA_DIST = |
| 3 | 3 |
| 4 # We may need to build our internally packaged gtest. If so, it will be | 4 # We may need to build our internally packaged gtest. If so, it will be |
| 5 # included in the 'subdirs' variable. | 5 # included in the 'subdirs' variable. |
| 6 SUBDIRS = $(subdirs) | 6 SUBDIRS = $(subdirs) |
| 7 | 7 |
| 8 # Scripts and utilities to be installed by 'make install'. | 8 # Scripts and utilities to be installed by 'make install'. |
| 9 dist_bin_SCRIPTS = scripts/gmock_doctor.py | 9 dist_bin_SCRIPTS = scripts/gmock_doctor.py |
| 10 bin_SCRIPTS = scripts/gmock-config | 10 bin_SCRIPTS = scripts/gmock-config |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 TESTS += test/gmock-spec-builders_test | 128 TESTS += test/gmock-spec-builders_test |
| 129 check_PROGRAMS += test/gmock-spec-builders_test | 129 check_PROGRAMS += test/gmock-spec-builders_test |
| 130 test_gmock_spec_builders_test_SOURCES = test/gmock-spec-builders_test.cc | 130 test_gmock_spec_builders_test_SOURCES = test/gmock-spec-builders_test.cc |
| 131 test_gmock_spec_builders_test_LDADD = $(GTEST_LIBS) lib/libgmock.la | 131 test_gmock_spec_builders_test_LDADD = $(GTEST_LIBS) lib/libgmock.la |
| 132 | 132 |
| 133 TESTS += test/gmock_test | 133 TESTS += test/gmock_test |
| 134 check_PROGRAMS += test/gmock_test | 134 check_PROGRAMS += test/gmock_test |
| 135 test_gmock_test_SOURCES = test/gmock_test.cc | 135 test_gmock_test_SOURCES = test/gmock_test.cc |
| 136 test_gmock_test_LDADD = $(GTEST_LIBS) lib/libgmock_main.la | 136 test_gmock_test_LDADD = $(GTEST_LIBS) lib/libgmock_main.la |
| 137 | 137 |
| 138 # A sanity test for verifying that Google Mock works when RTTI is |
| 139 # disabled. We pick gmock-spec-builders_test.cc as it exercises all |
| 140 # components of Google Mock. |
| 141 TESTS += test/gmock_no_rtti_test |
| 142 check_PROGRAMS += test/gmock_no_rtti_test |
| 143 test_gmock_no_rtti_test_SOURCES = test/gmock-spec-builders_test.cc \ |
| 144 src/gmock-all.cc |
| 145 test_gmock_no_rtti_test_CXXFLAGS = $(AM_CXXFLAGS) -fno-rtti -DGTEST_HAS_RTTI=0 |
| 146 test_gmock_no_rtti_test_LDADD = $(GTEST_LIBS) |
| 147 |
| 148 # A sanity test for verifying that Google Mock works with Google |
| 149 # Test's TR1 tuple implementation. We pick |
| 150 # gmock-spec-builders_test.cc as it exercises all components of Google |
| 151 # Mock. |
| 152 TESTS += test/gmock_use_own_tuple_test |
| 153 check_PROGRAMS += test/gmock_use_own_tuple_test |
| 154 test_gmock_use_own_tuple_test_SOURCES = test/gmock-spec-builders_test.cc \ |
| 155 src/gmock-all.cc |
| 156 test_gmock_use_own_tuple_test_CXXFLAGS = \ |
| 157 $(AM_CXXFLAGS) -DGTEST_USE_OWN_TR1_TUPLE=1 |
| 158 test_gmock_use_own_tuple_test_LDADD = $(GTEST_LIBS) |
| 159 |
| 138 # The following tests depend on the presence of a Python installation and are | 160 # The following tests depend on the presence of a Python installation and are |
| 139 # keyed off of it. We only add them to the TESTS variable when a Python | 161 # keyed off of it. We only add them to the TESTS variable when a Python |
| 140 # interpreter is available. TODO(chandlerc@google.com): While we currently only | 162 # interpreter is available. TODO(chandlerc@google.com): While we currently only |
| 141 # attempt to build and execute these tests if Autoconf has found Python v2.3 on | 163 # attempt to build and execute these tests if Autoconf has found Python v2.3 on |
| 142 # the system, we don't use the PYTHON variable it specified as the valid | 164 # the system, we don't use the PYTHON variable it specified as the valid |
| 143 # interpreter. The problem is that TESTS_ENVIRONMENT is a global variable, and | 165 # interpreter. The problem is that TESTS_ENVIRONMENT is a global variable, and |
| 144 # thus we cannot distinguish between C++ unit tests and Python unit tests. | 166 # thus we cannot distinguish between C++ unit tests and Python unit tests. |
| 145 dist_check_SCRIPTS = | 167 dist_check_SCRIPTS = |
| 146 | 168 |
| 147 # Python modules used by multiple Python tests below. | 169 # Python modules used by multiple Python tests below. |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 # Microsoft Visual Studio 2005 projects. | 223 # Microsoft Visual Studio 2005 projects. |
| 202 EXTRA_DIST += \ | 224 EXTRA_DIST += \ |
| 203 msvc/gmock.sln \ | 225 msvc/gmock.sln \ |
| 204 msvc/gmock.vcproj \ | 226 msvc/gmock.vcproj \ |
| 205 msvc/gmock_config.vsprops \ | 227 msvc/gmock_config.vsprops \ |
| 206 msvc/gmock_link_test.vcproj \ | 228 msvc/gmock_link_test.vcproj \ |
| 207 msvc/gmock_main.vcproj \ | 229 msvc/gmock_main.vcproj \ |
| 208 msvc/gmock_output_test_.vcproj \ | 230 msvc/gmock_output_test_.vcproj \ |
| 209 msvc/gmock-spec-builders_test.vcproj \ | 231 msvc/gmock-spec-builders_test.vcproj \ |
| 210 msvc/gmock_test.vcproj | 232 msvc/gmock_test.vcproj |
| OLD | NEW |