
Note to other developers: you might have to do `make clean;./autogen.sh` after this commit. * Use a GtkCheese namespace to be constistent with other vapi's (such as GtkClutter). * Put each library in a separate vapi-file (this will come in handy when porting to Meson). * Clean up config.vapi: * get rid of unused CCode prefix-attribute (removes warning) * be consistent with braces
17 lines
608 B
Vala
17 lines
608 B
Vala
[CCode (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/gnome-contacts */
|
|
public const string PKGLIBDIR; /* /usr/local/lib/gnome-contacts */
|
|
}
|
|
|