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.
37 lines
850 B
37 lines
850 B
14 years ago
|
#################################################
|
||
|
#
|
||
|
# (C) 2010-2011 Calvin Morrison
|
||
|
# mutantturkey@gmail.com
|
||
|
#
|
||
|
# Improvements and feedback are welcome
|
||
|
#
|
||
|
# This file is released under GPL >= 2
|
||
|
#
|
||
|
#################################################
|
||
|
|
||
|
include_directories(
|
||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||
|
${CMAKE_BINARY_DIR}
|
||
|
${TDE_INCLUDE_DIR}
|
||
|
${TQT_INCLUDE_DIRS}
|
||
12 years ago
|
${CMAKE_SOURCE_DIR}/tdefile-plugins/dependencies/poppler-tqt
|
||
14 years ago
|
)
|
||
|
|
||
|
link_directories(
|
||
|
${TQT_LIBRARY_DIRS}
|
||
|
)
|
||
|
|
||
|
|
||
|
#### other data #################################
|
||
|
|
||
12 years ago
|
install( FILES tdefile_pdf.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
|
||
14 years ago
|
|
||
|
|
||
12 years ago
|
#### tdefile_pdf (module) #########################
|
||
14 years ago
|
|
||
12 years ago
|
tde_add_kpart( tdefile_pdf AUTOMOC
|
||
|
SOURCES tdefile_pdf.cpp
|
||
|
LINK tdeio-shared -L${CMAKE_BINARY_DIR}/tdefile-plugins/dependencies/poppler-tqt -lpoppler-tqt
|
||
14 years ago
|
DESTINATION ${PLUGIN_INSTALL_DIR}
|
||
|
)
|