2007-10-19 19:16:07 +02:00
|
|
|
noinst_LTLIBRARIES = libcimg.la
|
|
|
|
|
|
|
|
libcimg_la_SOURCES = \
|
|
|
|
CImg.h \
|
|
|
|
cimg_dispatch.c \
|
|
|
|
cimg.cpp
|
|
|
|
|
|
|
|
# various cimg settings as well
|
2007-10-31 17:41:33 +01:00
|
|
|
# we need to change these a bit for win32
|
|
|
|
if OS_WIN32
|
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-Dcimg_strict \
|
|
|
|
-Dcimg_OS=0 \
|
|
|
|
-Dcimg_display_type=0 \
|
|
|
|
-DLOCALEDIR=\""$(LOCALEDIR)"\"
|
|
|
|
else
|
2007-10-19 19:16:07 +02:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-Dcimg_strict \
|
|
|
|
-Dcimg_OS=1 \
|
|
|
|
-Dcimg_display_type=0 \
|
|
|
|
-DLOCALEDIR=\""$(LOCALEDIR)"\"
|
2007-10-31 17:41:33 +01:00
|
|
|
endif
|
2007-10-19 19:16:07 +02:00
|
|
|
|
|
|
|
INCLUDES = -I${top_srcdir}/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|