|
|
messages: rc.cpp | messages: rc.cpp |
$(XGETTEXT) *.cpp *.h -o $(podir)/kipiplugin_rawconverter.pot | $(XGETTEXT) *.cpp *.h -o $(podir)/kipiplugin_rawconverter.pot |
| |
#-- dcraw binary ------------------------------------------------- |
|
|
|
# RawConverter plugin use a dedicaced dcraw binary program to run. This is mandatory |
|
# since dcraw author have broken the command line options |
|
# compatibility with the 8.x serie. |
|
# Also, dcraw is not available like a library. |
|
# The dcraw.c source code is just a copy of official implementation, but |
|
# this one have been completly tested with this plugin. |
|
# Note: dcraw project page is http://cybercom.net/~dcoffin |
|
|
|
bin_PROGRAMS = kipidcraw |
|
|
|
# This line is require to disable color management support (using LCMS library) witch |
|
# is not yet supported by plugin. |
|
kipidcraw_CFLAGS = -DNO_LCMS -w |
|
|
|
kipidcraw_SOURCES = dcraw.c |
|
|
|
kipidcraw_LDFLAGS = $(all_libraries) $(LIBJPEG) -lm |
|
|
|
|
|