5a61180b86
* NEW: Dutch translation updated in many places. [DEVELOPMENT ENVIRONMENT] * NEW: New option to run a program inside a true virtual terminal, but its standard error output is redirected to the IDE console. [WIKI] * NEW: New Gambas wiki CGI script. It aims at replacing the current wiki. Currently in development... [INTERPRETER] * NEW: A new '-t' hidden command-line argument to support redirecting the standard error output to a named pipe. [GB.IMAGE] * BUG: Link with the mathematic library as the pow() function is used for the image gamma filter. [GB.MARKDOWN] * NEW: Markdown.Line is a new property that returns the current line if an error occurs while converting markdown syntax to HTML. * NEW: Support for custom commands "{@...}". * NEW: The quote characters has the same effect as the backquote character, except that markdown is allowed inside. [GB.QT4] * BUG: Clipboard.Paste() now returns the image when there is both image and text inside the clipboard. git-svn-id: svn://localhost/gambas/trunk@6146 867c0c6c-44f3-4631-809d-bfa615b0a4ec
24 lines
585 B
Makefile
24 lines
585 B
Makefile
COMPONENT = gb.image
|
|
include $(top_srcdir)/component.am
|
|
|
|
noinst_LTLIBRARIES = libimage.la
|
|
gblib_LTLIBRARIES = gb.image.la
|
|
|
|
libimage_la_LIBADD =
|
|
libimage_la_LDFLAGS = -module @LD_FLAGS@
|
|
libimage_la_CFLAGS = -I$(top_srcdir)/share $(AM_CFLAGS_OPT)
|
|
|
|
libimage_la_SOURCES = \
|
|
image.h image.c
|
|
|
|
gb_image_la_LIBADD = libimage.la @MATH_LIB@
|
|
gb_image_la_LDFLAGS = -module @LD_FLAGS@
|
|
gb_image_la_CFLAGS = -I$(top_srcdir)/share $(AM_CFLAGS)
|
|
|
|
gb_image_la_SOURCES = \
|
|
image_stat.h image_stat.c \
|
|
CImage.h CImage.c \
|
|
CImageStat.h CImageStat.c \
|
|
c_color.h c_color.c \
|
|
gb.image.h \
|
|
main.h main.c
|