From f0edc0e2b67fa43c4e2410c7d3d8f1841d576749 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 26 Aug 2016 16:37:16 +0200 Subject: Add pkg-config support for import installed Redesign library importing/exporting while at it. --- build2/pkgconfig/init | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 build2/pkgconfig/init (limited to 'build2/pkgconfig/init') diff --git a/build2/pkgconfig/init b/build2/pkgconfig/init new file mode 100644 index 0000000..53821ae --- /dev/null +++ b/build2/pkgconfig/init @@ -0,0 +1,37 @@ +// file : build2/pkgconfig/init -*- C++ -*- +// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd +// license : MIT; see accompanying LICENSE file + +#ifndef BUILD2_PKGCONFIG_INIT +#define BUILD2_PKGCONFIG_INIT + +#include +#include + +#include + +namespace build2 +{ + namespace pkgconfig + { + bool + config_init (scope&, + scope&, + const location&, + unique_ptr&, + bool, + bool, + const variable_map&); + + bool + init (scope&, + scope&, + const location&, + unique_ptr&, + bool, + bool, + const variable_map&); + } +} + +#endif // BUILD2_PKGCONFIG_INIT -- cgit v1.1