You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegraphics/tdefile-plugins/dependencies/poppler-tqt/CMakeLists.txt

56 lines
1.4 KiB

#################################################
#
# (C) 2010-2011 Calvin Morrison
# mutantturkey@gmail.com
#
# Improvements and feedback are welcome
#
# This file is released under GPL >= 2
#
#################################################
project( libpoppler-tqt )
##### configure checks ##########################
include( ConfigureChecks.cmake )
include_directories(
${CMAKE_CURRENT_BINARY_DIR}
${CMAKE_BINARY_DIR}
${TDE_INCLUDE_DIR}
${TQT_INCLUDE_DIRS}
${CMAKE_SOURCE_DIR}/tdefile-plugins/dependencies/poppler-tqt
${POPPLER_INCLUDE_DIRS}
)
link_directories(
${TQT_LIBRARY_DIRS}
${POPPLER_LIBRARY_DIRS}
)
##### pc files ##################################
configure_file( poppler-tqt.pc.cmake poppler-tqt.pc @ONLY )
install( FILES ${CMAKE_CURRENT_BINARY_DIR}/poppler-tqt.pc DESTINATION ${PKGCONFIG_INSTALL_DIR} )
##### headers ###################################
install( FILES
poppler-qt.h poppler-page-transition.h poppler-link-qt3.h
DESTINATION ${INCLUDE_INSTALL_DIR} )
##### poppler-tqt (shared) ############################
tde_add_library( poppler-tqt SHARED AUTOMOC
SOURCES
poppler-document.cpp poppler-fontinfo.cpp
poppler-link.cpp poppler-page.cpp
poppler-page-transition.cpp poppler-page-transition-private.h
poppler-private.cpp poppler-private.h
VERSION 0.0.0
LINK ${POPPLER_LIBRARIES} ${TQT_LIBRARIES}
DESTINATION ${LIB_INSTALL_DIR}
)