From 4460f26c1182f412b5ab07f093a0f078191995ef Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Fri, 2 Nov 2018 17:20:52 -0700 Subject: 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 --- src/Makefile.am | 8 ++++++++ src/stdplus.pc.in | 10 ++++++++++ src/stdplus/placeholder.cpp | 1 + src/stdplus/placeholder.hpp | 1 + 4 files changed, 20 insertions(+) create mode 100644 src/Makefile.am create mode 100644 src/stdplus.pc.in create mode 100644 src/stdplus/placeholder.cpp create mode 100644 src/stdplus/placeholder.hpp (limited to 'src') diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..de5de8d --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,8 @@ +nobase_include_HEADERS = +pkgconfig_DATA = stdplus.pc +lib_LTLIBRARIES = libstdplus.la +libstdplus_la_SOURCES = +libstdplus_la_LIBADD = $(COMMON_LIBS) + +nobase_include_HEADERS += stdplus/placeholder.hpp +libstdplus_la_SOURCES += stdplus/placeholder.cpp diff --git a/src/stdplus.pc.in b/src/stdplus.pc.in new file mode 100644 index 0000000..b79e7ca --- /dev/null +++ b/src/stdplus.pc.in @@ -0,0 +1,10 @@ +prefix=@prefix@ +exec_prefix=@prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: stdplus +Description: Commonly used c++ classes and functions +Version: @VERSION@ +Cflags: -I${includedir} +Libs: -L${libdir} -lstdplus diff --git a/src/stdplus/placeholder.cpp b/src/stdplus/placeholder.cpp new file mode 100644 index 0000000..a4c9e2b --- /dev/null +++ b/src/stdplus/placeholder.cpp @@ -0,0 +1 @@ +#include diff --git a/src/stdplus/placeholder.hpp b/src/stdplus/placeholder.hpp new file mode 100644 index 0000000..6f70f09 --- /dev/null +++ b/src/stdplus/placeholder.hpp @@ -0,0 +1 @@ +#pragma once -- cgit v1.2.3