immortalwrt/package/ntlf9t/njitclient/src-gui/gtkgui/config.c
2020-02-14 13:40:14 +08:00

25 lines
396 B
C

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#ifndef PACKAGE_NAME
#define PACKAGE_NAME ""
#endif
#ifndef PACKAGE_VERSION
#define PACKAGE_VERSION ""
#endif
#ifndef LOCALEDIR
#define LOCALEDIR "/usr/local/share/locale"
#endif
#include "hello.h"
const struct GlobalConfig g_config = {
.package_name = PACKAGE_NAME,
.package_version = PACKAGE_VERSION,
.locale_dir = LOCALEDIR,
};