1## -*- mode: Perl -*-
2##
3## Copyright (c) 2012, 2013, 2015, 2016 The University of Utah
4## All rights reserved.
5##
6## This file is distributed under the University of Illinois Open Source
7## License.  See the file COPYING for details.
8
9###############################################################################
10
11package creduce_config;
12
13use strict;
14use warnings;
15
16use base 'Exporter';
17
18use constant {
19    bindir		=> q{@bindir@},
20    libexecdir		=> q{@libexecdir@},
21
22    PACKAGE_BUGREPORT	=> q{@PACKAGE_BUGREPORT@},
23    PACKAGE_NAME	=> q{@PACKAGE_NAME@},
24    PACKAGE_STRING	=> q{@PACKAGE_STRING@},
25    PACKAGE_URL		=> q{@PACKAGE_URL@},
26    PACKAGE_VERSION	=> q{@PACKAGE_VERSION@},
27
28    VERSION		=> q{@VERSION@},
29
30    GIT_VERSION		=> q{@GIT_HASH@},
31
32    # External programs invoked.
33    #
34    CLANG_FORMAT	=> q{@CLANG_FORMAT@},
35};
36
37our @EXPORT = qw();
38our @EXPORT_OK = qw(
39    bindir
40    libexecdir
41    PACKAGE_BUGREPORT
42    PACKAGE_NAME
43    PACKAGE_STRING
44    PACKAGE_URL
45    PACKAGE_VERSION
46    VERSION
47    GIT_VERSION
48    CLANG_FORMAT
49    );
50our %EXPORT_TAGS = qw();
51
52###############################################################################
53
541;
55
56## End of file.
57