/* * Copyright (C) 2008 Zeeshan Ali (Khattak) . * Copyright (C) 2008-2012 Nokia Corporation. * Copytight (C) 2012 Intel Corporation. * * Author: Zeeshan Ali (Khattak) * Jens Georg * * 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; }