pdfMerger.pri 1.31 KB
Newer Older
Claudio Valerio's avatar
Claudio Valerio committed
1 2

HEADERS += \
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
	AnnotsHandler.h \
	ASCII85Decode.h \
	ASCIIHexDecode.h \
	CCITTFaxDecode.h \
	Config.h \
	ContentHandler.h \
	DCTDecode.h \
	Decoder.h \
	Document.h \
	Exception.h \
	FileIsAbsentException.h \
	Filter.h \
	FilterPredictor.h \
	FlateDecode.h \
	JBIG2Decode.h \
	LZWDecode.h \
	MediaBoxElementHandler.h \
	MergePageDescription.h \
	Merger.h \
	Object.h \
	Page.h \
	PageElementHandler.h \
	PageParser.h \
	Parser.h \
	Rectangle.h \
	RemoveHimSelfHandler.h \
	RunLengthDecode.h \
	Transformation.h \
	TypeElementHandler.h \
	Utils.h \
	AbstractBoxElementHandler.h \
	CropBoxElementHandler.h \
	OverlayDocumentParser.h \
	RotationHandler.h
Claudio Valerio's avatar
Claudio Valerio committed
37 38

SOURCES += \
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
	AnnotsHandler.cpp \
	ASCII85Decode.cpp \
	ASCIIHexDecode.cpp \
	ContentHandler.cpp \
	Document.cpp \
	Filter.cpp \
	FilterPredictor.cpp \
	FlateDecode.cpp \
	LZWDecode.cpp \
	Merger.cpp \
	Object.cpp \
	Page.cpp \
	PageElementHandler.cpp \
	Parser.cpp \
	Rectangle.cpp \
	RemoveHimselfHandler.cpp \
	RunLengthDecode.cpp \
	Utils.cpp \
Claudio Valerio's avatar
Claudio Valerio committed
57 58 59 60
	OverlayDocumentParser.cpp \
    src/pdf-merger/CCITTFaxDecode.cpp \
    src/pdf-merger/JBIG2Decode.cpp \
    src/pdf-merger/DCTDecode.cpp
61 62
	

Claudio Valerio's avatar
Claudio Valerio committed
63 64 65 66 67 68 69 70 71 72 73 74 75 76
macx {
   LIBS += -lz
}

win32 {
    
    LIBS     += "-L$$PWD/../../zlib/1.2.3/lib" "-lzlib"
   
}

linux-g++ {

   LIBS += -lz

77 78 79 80 81 82
}
linux-g++-32 {

   LIBS += -lz

}
83 84 85 86 87
linux-g++-64 {

   LIBS += -lz

}
Claudio Valerio's avatar
Claudio Valerio committed
88 89 90