mirror of
https://github.com/alexkay/spek.git
synced 2025-04-25 20:32:14 +03:00
20 lines
695 B
Vala
20 lines
695 B
Vala
[CCode (prefix = "", lower_case_cprefix = "", cheader_filename = "config.h")]
|
|
namespace Config {
|
|
/* Package information */
|
|
public const string PACKAGE_NAME;
|
|
public const string PACKAGE_STRING;
|
|
public const string PACKAGE_VERSION;
|
|
|
|
/* Gettext package */
|
|
public const string GETTEXT_PACKAGE;
|
|
|
|
/* Configured paths - these variables are not present in config.h, they are
|
|
* passed to underlying C code as cmd line macros. */
|
|
public const string LOCALEDIR; /* /usr/local/share/locale */
|
|
public const string PKGDATADIR; /* /usr/local/share/spek */
|
|
public const string PKGLIBDIR; /* /usr/local/lib/spek */
|
|
|
|
/* freebsd*, linux*, mingw*, darwin*, etc. */
|
|
public const string HOST_OS;
|
|
}
|