Initial Project Files
This adds the initial autotools scripts and some placeholder c++ files
so that the builder is happy.
Tested:
Built and run through the unit test script.
Change-Id: Ie7e7e062726761aad54b77e1c55fcb1ba91afd49
Signed-off-by: William A. Kennington III <wak@google.com>
diff --git a/test/Makefile.am b/test/Makefile.am
new file mode 100644
index 0000000..c67e07a
--- /dev/null
+++ b/test/Makefile.am
@@ -0,0 +1,13 @@
+@VALGRIND_CHECK_RULES@
+@CODE_COVERAGE_RULES@
+
+gtest_cppflags = $(AM_CPPFLAGS) $(GTEST_CFLAGS) $(GMOCK_CFLAGS)
+gtest_ldadd = $(STDPLUS_LIBS) $(GTEST_LIBS) $(GMOCK_LIBS) -lgmock_main
+
+check_PROGRAMS =
+TESTS = $(check_PROGRAMS)
+
+check_PROGRAMS += placeholder
+placeholder_SOURCES = placeholder.cpp
+placeholder_CPPFLAGS = $(gtest_cppflags)
+placeholder_LDADD = $(gtest_ldadd)