33 lines
800 B
C
33 lines
800 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 "0.9.4"
|
|
#define MOO_MAJOR_VERSION 0
|
|
#define MOO_MINOR_VERSION 9
|
|
#define MOO_MICRO_VERSION 4
|
|
|
|
#define MOO_MODULE_VERSION "1.0"
|
|
#define MOO_MODULE_MAJOR_VERSION 1
|
|
#define MOO_MODULE_MINOR_VERSION 0
|
|
|
|
#define MOO_LUA_ENABLED 1
|
|
#define MOO_APP_ENABLED 1
|
|
#define MOO_EDIT_ENABLED 1
|
|
#define MOO_TERM_ENABLED 1
|
|
|
|
|
|
#endif /* MOO_CONFIG_H */
|