34 lines
979 B
C
34 lines
979 B
C
/*
|
|
* moo-config.h
|
|
*
|
|
* Copyright (C) 2004-2007 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* See COPYING file that comes with this distribution.
|
|
*/
|
|
|
|
#ifndef MOO_CONFIG_H
|
|
#define MOO_CONFIG_H
|
|
|
|
|
|
#define MOO_VERSION @MOO_VERSION@
|
|
#define MOO_MAJOR_VERSION @MOO_MAJOR_VERSION@
|
|
#define MOO_MINOR_VERSION @MOO_MINOR_VERSION@
|
|
#define MOO_MICRO_VERSION @MOO_MICRO_VERSION@
|
|
|
|
#define MOO_MODULE_VERSION @MOO_MODULE_VERSION@
|
|
#define MOO_MODULE_MAJOR_VERSION @MOO_MODULE_MAJOR_VERSION@
|
|
#define MOO_MODULE_MINOR_VERSION @MOO_MODULE_MINOR_VERSION@
|
|
|
|
@MOO_LUA_ENABLED_DEFINE@
|
|
@MOO_APP_ENABLED_DEFINE@
|
|
@MOO_EDIT_ENABLED_DEFINE@
|
|
@MOO_TERM_ENABLED_DEFINE@
|
|
|
|
|
|
#endif /* MOO_CONFIG_H */
|