Spaces:
Running
Running
File size: 5,192 Bytes
5cee033 |
1 2 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
include(FindGettext) include(FindIntl) set(common_srcs parseargs.cc Win32Console.cc ) set(common_libs poppler ) # pdftoppm set(pdftoppm_SOURCES ${common_srcs} pdftoppm.cc sanitychecks.cc ) add_executable(pdftoppm ${pdftoppm_SOURCES}) target_link_libraries(pdftoppm ${common_libs}) if(LCMS2_FOUND) target_link_libraries(pdftoppm ${LCMS2_LIBRARIES}) target_include_directories(pdftoppm SYSTEM PRIVATE ${LCMS2_INCLUDE_DIR}) endif() install(TARGETS pdftoppm DESTINATION bin) install(FILES pdftoppm.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) if (HAVE_CAIRO) # pdftocairo set(pdftocairo_SOURCES ${common_srcs} pdftocairo.cc pdftocairo-win32.cc ${CMAKE_SOURCE_DIR}/poppler/CairoFontEngine.cc ${CMAKE_SOURCE_DIR}/poppler/CairoOutputDev.cc ${CMAKE_SOURCE_DIR}/poppler/CairoRescaleBox.cc ) include_directories( ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) add_definitions(${CAIRO_CFLAGS}) add_executable(pdftocairo ${pdftocairo_SOURCES}) target_link_libraries(pdftocairo ${CAIRO_LIBRARIES} Freetype::Freetype ${common_libs}) target_include_directories(pdftocairo SYSTEM PRIVATE ${CAIRO_INCLUDE_DIRS}) if(LCMS2_FOUND) target_link_libraries(pdftocairo ${LCMS2_LIBRARIES}) target_include_directories(pdftocairo SYSTEM PRIVATE ${LCMS2_INCLUDE_DIR}) endif() install(TARGETS pdftocairo DESTINATION bin) install(FILES pdftocairo.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) endif () # pdfdetach set(pdfdetach_SOURCES ${common_srcs} pdfdetach.cc ) add_executable(pdfdetach ${pdfdetach_SOURCES}) target_link_libraries(pdfdetach ${common_libs}) install(TARGETS pdfdetach DESTINATION bin) install(FILES pdfdetach.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) # pdfdetach set(pdfattach_SOURCES ${common_srcs} pdfattach.cc ) add_executable(pdfattach ${pdfattach_SOURCES}) target_link_libraries(pdfattach ${common_libs}) install(TARGETS pdfattach DESTINATION bin) install(FILES pdfattach.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) # pdffonts set(pdffonts_SOURCES ${common_srcs} pdffonts.cc ) add_executable(pdffonts ${pdffonts_SOURCES}) target_link_libraries(pdffonts ${common_libs}) install(TARGETS pdffonts DESTINATION bin) install(FILES pdffonts.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) # pdfimages set(pdfimages_SOURCES ${common_srcs} pdfimages.cc ImageOutputDev.cc ImageOutputDev.h ) add_executable(pdfimages ${pdfimages_SOURCES}) target_link_libraries(pdfimages ${common_libs}) install(TARGETS pdfimages DESTINATION bin) install(FILES pdfimages.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) # pdfinfo set(pdfinfo_SOURCES ${common_srcs} pdfinfo.cc printencodings.cc ) add_executable(pdfinfo ${pdfinfo_SOURCES}) target_link_libraries(pdfinfo ${common_libs}) install(TARGETS pdfinfo DESTINATION bin) install(FILES pdfinfo.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) if (GETTEXT_FOUND AND Intl_FOUND AND ENABLE_SIGNATURES) add_definitions(-DHAVE_GETTEXT) add_definitions(-DCMAKE_INSTALL_LOCALEDIR="${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LOCALEDIR}") add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/po") endif () if (ENABLE_SIGNATURES) # pdfsig set(pdfsig_SOURCES ${common_srcs} pdfsig.cc ) add_executable(pdfsig ${pdfsig_SOURCES}) target_link_libraries(pdfsig ${common_libs}) if (ENABLE_NSS3) target_include_directories(pdfsig SYSTEM PRIVATE ${NSS3_INCLUDE_DIRS}) endif() if (Intl_FOUND) target_link_libraries(pdfsig Intl::Intl) endif () install(TARGETS pdfsig DESTINATION bin) install(FILES pdfsig.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) endif () # pdftops set(pdftops_SOURCES ${common_srcs} pdftops.cc sanitychecks.cc ) add_executable(pdftops ${pdftops_SOURCES}) target_link_libraries(pdftops ${common_libs}) if(LCMS2_FOUND) target_link_libraries(pdftops ${LCMS2_LIBRARIES}) target_include_directories(pdftops SYSTEM PRIVATE ${LCMS2_INCLUDE_DIR}) endif() install(TARGETS pdftops DESTINATION bin) install(FILES pdftops.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) # pdftotext set(pdftotext_SOURCES ${common_srcs} pdftotext.cc printencodings.cc ) add_executable(pdftotext ${pdftotext_SOURCES}) target_link_libraries(pdftotext ${common_libs}) install(TARGETS pdftotext DESTINATION bin) install(FILES pdftotext.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) # pdftohtml set(pdftohtml_SOURCES ${common_srcs} InMemoryFile.cc pdftohtml.cc HtmlFonts.cc HtmlLinks.cc HtmlOutputDev.cc ) add_executable(pdftohtml ${pdftohtml_SOURCES}) target_link_libraries(pdftohtml ${common_libs}) install(TARGETS pdftohtml DESTINATION bin) install(FILES pdftohtml.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) # pdfseparate set(pdfseparate_SOURCES ${common_srcs} pdfseparate.cc ) add_executable(pdfseparate ${pdfseparate_SOURCES}) target_link_libraries(pdfseparate ${common_libs}) install(TARGETS pdfseparate DESTINATION bin) install(FILES pdfseparate.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) # pdfunite set(pdfunite_SOURCES ${common_srcs} pdfunite.cc ) add_executable(pdfunite ${pdfunite_SOURCES}) target_link_libraries(pdfunite ${common_libs}) install(TARGETS pdfunite DESTINATION bin) install(FILES pdfunite.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1) |