okular/generators/CMakeLists.txt
Pino Toscano 2bfdb0f319 New backend: DVI.
Adapted from the DVI plugin of KViewShell.
It can:
- load documents
- generate correctly the pixmaps for the images
- rotate the pages
- extract the text from the pages (thus search and text selection are possible)
- extract the URL hyperlinks from the documents

Credits for this work goes to Luigi Toscano, thanks Luigi!

CCMAIL: Luigi Toscano <luigi.toscano@tiscali.it>

svn path=/trunk/playground/graphics/okular/; revision=555582
2006-06-27 22:17:35 +00:00

35 lines
637 B
CMake

# let's enable the generators properly configured
if(POPPLER_FOUND)
add_subdirectory(poppler)
endif(POPPLER_FOUND)
if(LIBGS_FOUND)
add_subdirectory(ghostview)
endif(LIBGS_FOUND)
add_subdirectory( fax )
add_subdirectory( kimgio )
if(CHM_FOUND)
add_subdirectory( chm )
endif(CHM_FOUND)
if(DJVULIBRE_FOUND)
add_subdirectory(djvu)
endif(DJVULIBRE_FOUND)
add_subdirectory(dvi)
#original Makefile.am contents follow:
#if include_ghostscript
#GSPLUGINDIR = ghostview
#endif
#
#if include_chm
#CHMPLUGINDIR = chm
#endif
#
#if include_pdf
#PDFPLUGINDIR = poppler
#endif
#
#SUBDIRS = $(GSPLUGINDIR) poppler fax kimgio $(CHMPLUGINDIR)
#