okular/generators/CMakeLists.txt

35 lines
637 B
CMake
Raw Normal View History

# 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)
#