summaryrefslogtreecommitdiff
path: root/src/librygel-core/rygel-build-config.vapi
blob: 8e746345948505ee4696e8b91c0d4b7d41553109 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
 * Copyright (C) 2008 Zeeshan Ali (Khattak) <zeeshanak@gnome.org>.
 * Copyright (C) 2008-2012 Nokia Corporation.
 * Copytight (C) 2012 Intel Corporation.
 *
 * Author: Zeeshan Ali (Khattak) <zeeshanak@gnome.org>
 *         Jens Georg <jensg@openismus.com>
 *
 * This file is part of Rygel.
 *
 * Rygel is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * Rygel is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

/**
  * Holds constants defined by build system.
  */
[CCode (cheader_filename = "config.h")]
public class Rygel.BuildConfig {
    [CCode (cname = "DATA_DIR")]
    public const string DATA_DIR;

    [CCode (cname = "SYS_CONFIG_DIR")]
    public const string SYS_CONFIG_DIR;

    [CCode (cname = "DESKTOP_DIR")]
    public const string DESKTOP_DIR;

    [CCode (cname = "PLUGIN_DIR")]
    public const string PLUGIN_DIR;

    [CCode (cname = "BIG_ICON_DIR")]
    public const string BIG_ICON_DIR;

    [CCode (cname = "SMALL_ICON_DIR")]
    public const string SMALL_ICON_DIR;

    [CCode (cname = "PACKAGE_NAME")]
    public const string PACKAGE_NAME;

    [CCode (cname = "PACKAGE_VERSION")]
    public const string PACKAGE_VERSION;

    [CCode (cname = "PACKAGE_STRING")]
    public const string PACKAGE_STRING;

    [CCode (cname = "GETTEXT_PACKAGE")]
    public const string GETTEXT_PACKAGE;

    [CCode (cname = "LOCALEDIR")]
    public const string LOCALEDIR;

    [CCode (cname = "ENGINE_DIR")]
    public const string ENGINE_DIR;

    [CCode (cname = "PRESET_DIR")]
    public const string PRESET_DIR;
}