Move instructions into custom/README files

This commit is contained in:
Gennadiy Civil
2018-08-13 14:31:56 -04:00
parent 18c940d13a
commit 63baab8924
7 changed files with 78 additions and 58 deletions

View File

@@ -0,0 +1,16 @@
# Customization Points
The custom directory is an injection point for custom user configurations.
## Header gmock-port.h
The following macros can be defined:
### Flag related macros:
* GMOCK_DECLARE_bool_(name)
* GMOCK_DECLARE_int32_(name)
* GMOCK_DECLARE_string_(name)
* GMOCK_DEFINE_bool_(name, default_val, doc)
* GMOCK_DEFINE_int32_(name, default_val, doc)
* GMOCK_DEFINE_string_(name, default_val, doc)

View File

@@ -27,9 +27,7 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// ============================================================
// An installation-specific extension point for gmock-matchers.h.
// ============================================================
// Injection point for custom user configurations. See README for details
//
// GOOGLETEST_CM0002 DO NOT DELETE

View File

@@ -27,16 +27,7 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Injection point for custom user configurations.
// The following macros can be defined:
//
// Flag related macros:
// GMOCK_DECLARE_bool_(name)
// GMOCK_DECLARE_int32_(name)
// GMOCK_DECLARE_string_(name)
// GMOCK_DEFINE_bool_(name, default_val, doc)
// GMOCK_DEFINE_int32_(name, default_val, doc)
// GMOCK_DEFINE_string_(name, default_val, doc)
// Injection point for custom user configurations. See README for details
//
// ** Custom implementation starts here **