2009-01-27 02:24:19 +01:00
|
|
|
/* Copyrights */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __COPYRIGHT (c) 2012
|
2009-01-27 02:24:19 +01:00
|
|
|
#define __AUTHOR Benoît Minisini
|
|
|
|
#define __EMAIL <gambas@users.sourceforge.net>
|
|
|
|
|
|
|
|
/* Name of the component */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __COMPONENT gb.gmp
|
2009-01-27 02:24:19 +01:00
|
|
|
|
|
|
|
/* Name of the component with points replaced by underscore */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __COMPONENT_UNDERSCORE gb_gmp
|
2009-01-27 02:24:19 +01:00
|
|
|
|
|
|
|
/* Short name of the component */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __NAME gmp
|
2009-01-27 02:24:19 +01:00
|
|
|
|
|
|
|
/* Short name of the component in uppercase */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __UNAME GMP
|
2009-01-27 02:24:19 +01:00
|
|
|
|
|
|
|
/* Description of the component */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __DESCRIPTION GNU multi-precision arithmetic library component
|
2009-01-27 02:24:19 +01:00
|
|
|
|
|
|
|
/* If the component detection uses pkg-config */
|
|
|
|
#define __USE_PKGCONFIG 0
|
|
|
|
|
|
|
|
#if __USE_PKGCONFIG
|
|
|
|
|
|
|
|
/* Name of the package for pkg-config */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __PKGCONFIG_NAME gsl
|
2009-01-27 02:24:19 +01:00
|
|
|
|
|
|
|
/* Minimum version needed */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __PKGCONFIG_VERSION
|
2009-01-27 02:24:19 +01:00
|
|
|
|
|
|
|
#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 */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __SEARCH_INCLUDE gmp.h
|
2009-01-27 02:24:19 +01:00
|
|
|
|
|
|
|
/* Includes directories search path */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __SEARCH_INCLUDE_PATH /usr/local /usr
|
2009-01-27 02:24:19 +01:00
|
|
|
|
|
|
|
/* Includes sub-directories search */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __SEARCH_INCLUDE_DIR include
|
2009-01-27 02:24:19 +01:00
|
|
|
|
|
|
|
/* Libraries to search for */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __SEARCH_LIBRARY libgmp.$SHLIBEXT
|
2009-01-27 02:24:19 +01:00
|
|
|
|
|
|
|
/* Libraries directories search path */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __SEARCH_LIBRARY_PATH /usr/local /usr
|
2009-01-27 02:24:19 +01:00
|
|
|
|
|
|
|
/* Libraries sub-directories search path */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __SEARCH_LIBRARY_DIR lib/* lib
|
2009-01-27 02:24:19 +01:00
|
|
|
|
|
|
|
/* Libraries to link with */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __LIBRARY -lgmp
|
|
|
|
|
|
|
|
/* Includes to link with */
|
|
|
|
#define __INCLUDE
|
2009-01-27 02:24:19 +01:00
|
|
|
|
|
|
|
#endif /* __USE_PKGCONFIG */
|
|
|
|
|
|
|
|
/* Source file list */
|
2012-08-07 16:04:55 +02:00
|
|
|
#define __SOURCES main.c main.h
|
2009-01-27 02:24:19 +01:00
|
|
|
|
|
|
|
/* Main C/C++ source basename in uppercase */
|
|
|
|
#define __MAIN_UNAME MAIN
|