f457c9608c
* BUG: Fix the component template script. [GB.FORM] * BUG: SidePanel controls now behave correctly when they are put inside a TabStrip. [GB.GMP] * NEW: Skeleton for a new component based on the GNU "big numbers" GMP library. [GB.GTK] * NEW: TabStrip.FindIndex() is a new method that returns the index of parent tab of a specific child. * BUG: Fix Control.Raise() and Control.Lower() method when the parent is a TabStrip. [GB.QT4] * NEW: TabStrip.FindIndex() is a new method that returns the index of parent tab of a specific child. [GB.QT4.EXT] * NEW: Editor: The current line is now visible when using a dark highlight theme. git-svn-id: svn://localhost/gambas/trunk@5016 867c0c6c-44f3-4631-809d-bfa615b0a4ec
76 lines
1.7 KiB
Text
76 lines
1.7 KiB
Text
/* Copyrights */
|
|
#define __COPYRIGHT (c) 2012
|
|
#define __AUTHOR Benoît Minisini
|
|
#define __EMAIL <gambas@users.sourceforge.net>
|
|
|
|
/* Name of the component */
|
|
#define __COMPONENT gb.gmp
|
|
|
|
/* Name of the component with points replaced by underscore */
|
|
#define __COMPONENT_UNDERSCORE gb_gmp
|
|
|
|
/* Short name of the component */
|
|
#define __NAME gmp
|
|
|
|
/* Short name of the component in uppercase */
|
|
#define __UNAME GMP
|
|
|
|
/* Description of the component */
|
|
#define __DESCRIPTION GNU multi-precision arithmetic library component
|
|
|
|
/* If the component detection uses pkg-config */
|
|
#define __USE_PKGCONFIG 0
|
|
|
|
#if __USE_PKGCONFIG
|
|
|
|
/* Name of the package for pkg-config */
|
|
#define __PKGCONFIG_NAME gsl
|
|
|
|
/* Minimum version needed */
|
|
#define __PKGCONFIG_VERSION
|
|
|
|
#else /* __USE_PKGCONFIG */
|
|
|
|
/* If your component uses C */
|
|
#define __USE_C 1
|
|
|
|
/* If your component uses C++ */
|
|
#define __USE_CPLUSPLUS 0
|
|
|
|
/* If your component uses multi-threading */
|
|
#define __USE_THREAD 0
|
|
|
|
/* If your component uses X-Window */
|
|
#define __USE_XWINDOW 0
|
|
|
|
/* Includes to search for */
|
|
#define __SEARCH_INCLUDE gmp.h
|
|
|
|
/* Includes directories search path */
|
|
#define __SEARCH_INCLUDE_PATH /usr/local /usr
|
|
|
|
/* Includes sub-directories search */
|
|
#define __SEARCH_INCLUDE_DIR include
|
|
|
|
/* Libraries to search for */
|
|
#define __SEARCH_LIBRARY libgmp.$SHLIBEXT
|
|
|
|
/* Libraries directories search path */
|
|
#define __SEARCH_LIBRARY_PATH /usr/local /usr
|
|
|
|
/* Libraries sub-directories search path */
|
|
#define __SEARCH_LIBRARY_DIR lib/* lib
|
|
|
|
/* Libraries to link with */
|
|
#define __LIBRARY -lgmp
|
|
|
|
/* Includes to link with */
|
|
#define __INCLUDE
|
|
|
|
#endif /* __USE_PKGCONFIG */
|
|
|
|
/* Source file list */
|
|
#define __SOURCES main.c main.h
|
|
|
|
/* Main C/C++ source basename in uppercase */
|
|
#define __MAIN_UNAME MAIN
|