gambas-source-code/TEMPLATE/conf/gb.dbus.conf
Benoît Minisini 06282813f5 [DEVELOPMENT ENVIRONMENT]
* BUG: Fix the project refreshing routine that made edited data files 
  read-only and unsaveable.

[WEB SITE MAKER]
* NEW: Arabic translation made by Daif Alotaibi.
* NEW: Support for right-to-left written languages.

[GB.DBUS]
* NEW: A new component to talk with D-Bus. But it cannot do anything at 
  the moment.

[GB.QT4]
* BUG: Expanded an item in a TreeView by code now shows the children as if 
  you did it by user interaction.


git-svn-id: svn://localhost/gambas/trunk@2197 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2009-07-30 21:42:46 +00:00

76 lines
1.6 KiB
Text

/* Copyrights */
#define __COPYRIGHT (c) 2009
#define __AUTHOR Benoît Minisini
#define __EMAIL <gambas@users.sourceforge.net>
/* Name of the component */
#define __COMPONENT gb.dbus
/* Name of the component with points replaced by underscore */
#define __COMPONENT_UNDERSCORE gb_dbus
/* Short name of the component */
#define __NAME dbus
/* Short name of the component in uppercase */
#define __UNAME DBUS
/* Description of the component */
#define __DESCRIPTION DBUS management
/* If the component detection uses pkg-config */
#define __USE_PKGCONFIG 1
#if __USE_PKGCONFIG
/* Name of the package for pkg-config */
#define __PKGCONFIG_NAME dbus-1
/* Minimum version needed */
//#define __PKGCONFIG_VERSION 2.14.3
#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
/* Includes directories search path */
#define __SEARCH_INCLUDE_PATH
/* Includes sub-directories search */
#define __SEARCH_INCLUDE_DIR
/* Libraries to search for */
#define __SEARCH_LIBRARY
/* Libraries directories search path */
#define __SEARCH_LIBRARY_PATH
/* Libraries sub-directories search path */
#define __SEARCH_LIBRARY_DIR
/* Libraries to link with */
#define __LIBRARY
/* Includes to look for */
#define __INCLUDE
#endif /* __USE_PKGCONFIG */
/* Source file list */
#define __SOURCES main.c main.h cdbus.c cdbus.h
/* Main C/C++ source basename in uppercase */
#define __MAIN_UNAME MAIN