c0d038b9f2
* NEW: ImageEditor: Invert the current selected shape reverses its points order. Selection offset has been implemented on top of the new gb.clipper component. Many bug fixes. [GB.CLIPPER] * NEW: This a new component based on the "Clipper" library. At the moment, it only allows to offset a group of polygons from a specified pixel delta. git-svn-id: svn://localhost/gambas/trunk@5788 867c0c6c-44f3-4631-809d-bfa615b0a4ec
19 lines
549 B
Makefile
19 lines
549 B
Makefile
COMPONENT = gb.clipper
|
|
include $(top_srcdir)/component.am
|
|
|
|
noinst_LTLIBRARIES = libclipper.la
|
|
gblib_LTLIBRARIES = gb.clipper.la
|
|
|
|
libclipper_la_LIBADD =
|
|
libclipper_la_LDFLAGS = -module @LD_FLAGS@
|
|
libclipper_la_CXXFLAGS = -I$(top_srcdir)/share $(AM_CXXFLAGS_OPT) -fexceptions
|
|
|
|
libclipper_la_SOURCES = \
|
|
clipper.hpp clipper.cpp
|
|
|
|
gb_clipper_la_LIBADD = libclipper.la
|
|
gb_clipper_la_LDFLAGS = -module @LD_FLAGS@
|
|
gb_clipper_la_CXXFLAGS = -I$(top_srcdir)/share $(AM_CXXFLAGS)
|
|
|
|
gb_clipper_la_SOURCES = \
|
|
main.h main.cpp gb.geom.h c_clipper.cpp c_clipper.h
|