You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-commits@axis.apache.org by bi...@apache.org on 2018/04/28 23:31:17 UTC

svn commit: r1830483 - in /axis/axis2/c/core/trunk/neethi/gtest: ./ Makefile.am

Author: billblough
Date: Sat Apr 28 23:31:17 2018
New Revision: 1830483

URL: http://svn.apache.org/viewvc?rev=1830483&view=rev
Log:
Add missing gtest makefile for neethi

Added:
    axis/axis2/c/core/trunk/neethi/gtest/
    axis/axis2/c/core/trunk/neethi/gtest/Makefile.am   (with props)

Added: axis/axis2/c/core/trunk/neethi/gtest/Makefile.am
URL: http://svn.apache.org/viewvc/axis/axis2/c/core/trunk/neethi/gtest/Makefile.am?rev=1830483&view=auto
==============================================================================
--- axis/axis2/c/core/trunk/neethi/gtest/Makefile.am (added)
+++ axis/axis2/c/core/trunk/neethi/gtest/Makefile.am Sat Apr 28 23:31:17 2018
@@ -0,0 +1,14 @@
+
+noinst_LIBRARIES = libgtest.a libgtest_main.a
+
+libgtest_a_SOURCES = $(GTEST_DIR)/src/gtest-all.cc
+libgtest_a_CPPFLAGS = -I$(GTEST_DIR)/include -I$(GTEST_DIR)
+libgtest_a_CXXFLAGS = -g -Wall -Wextra
+libgtest_a_LDFLAGS = -pthread
+
+libgtest_main_a_SOURCES = $(GTEST_DIR)/src/gtest_main.cc
+libgtest_main_CPPFLAGS = -I$(GTEST_DIR)/include -I$(GTEST_DIR)
+libgtest_main_a_CXXFLAGS = -g -Wall -Wextra
+libgtest_main_LDFLAGS = -pthread
+libgtest_main_a_LIBADD = libgtest.a
+

Propchange: axis/axis2/c/core/trunk/neethi/gtest/Makefile.am
------------------------------------------------------------------------------
    svn:eol-style = native