33 lines
921 B
C
33 lines
921 B
C
/*
|
|
* moo-config.h
|
|
*
|
|
* Copyright (C) 2004-2007 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1 as published by the Free Software Foundation.
|
|
*
|
|
* 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 */
|