git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1244149 283d02a7-25f6-0310-bc7c-ecb5cbfe19dav3.5.13-sru
parent
56e7947236
commit
83b9df8edf
@ -0,0 +1,44 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2010-2011 Calvin Morrison
|
||||||
|
# mutantturkey@gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
project( libpoppler-tqt )
|
||||||
|
|
||||||
|
include_directories(
|
||||||
|
${CMAKE_CURRENT_BINARY_DIR}
|
||||||
|
${CMAKE_BINARY_DIR}
|
||||||
|
${TDE_INCLUDE_DIR}
|
||||||
|
${TQT_INCLUDE_DIRS}
|
||||||
|
${CMAKE_SOURCE_DIR}/kfile-plugins/dependencies/poppler-tqt
|
||||||
|
/usr/include/poppler
|
||||||
|
)
|
||||||
|
|
||||||
|
link_directories(
|
||||||
|
${TQT_LIBRARY_DIRS}
|
||||||
|
)
|
||||||
|
|
||||||
|
##### headers ###################################
|
||||||
|
|
||||||
|
install( FILES
|
||||||
|
poppler-qt.h poppler-page-transition.h poppler-link-qt3.h
|
||||||
|
DESTINATION ${INCLUDE_INSTALL_DIR}/kde )
|
||||||
|
|
||||||
|
##### poppler-tqt (shared) ############################
|
||||||
|
|
||||||
|
tde_add_library( poppler-tqt SHARED AUTOMOC
|
||||||
|
SOURCES
|
||||||
|
poppler-document.cc poppler-fontinfo.cc
|
||||||
|
poppler-link.cc poppler-page.cc
|
||||||
|
poppler-page-transition.cc poppler-page-transition-private.h
|
||||||
|
poppler-private.cc poppler-private.h
|
||||||
|
VERSION 0.0.0
|
||||||
|
LINK poppler ${TQT_LIBRARIES}
|
||||||
|
DESTINATION ${LIB_INSTALL_DIR}
|
||||||
|
)
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2010-2011 Calvin Morrison
|
||||||
|
# mutantturkey@gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
add_subdirectory( scenes )
|
||||||
|
add_subdirectory( includes )
|
@ -0,0 +1,13 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2010-2011 Calvin Morrison
|
||||||
|
# mutantturkey@gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
add_subdirectory( inlined )
|
||||||
|
add_subdirectory( original )
|
@ -0,0 +1,18 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2011 Timothy Pearson
|
||||||
|
# kb9vqf (AT) pearsoncomputing.net
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
##### other data ################################
|
||||||
|
|
||||||
|
install( FILES
|
||||||
|
chars.kpm finish.kpm glass.kpm golds.kpm metals.kpm shapes.kpm
|
||||||
|
shapes2.kpm shapesq.kpm skies.kpm stars.kpm stones1.kpm stones2.kpm
|
||||||
|
textures.kpm woods.kpm
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kpovmodeler/examples/includes/inlined )
|
@ -0,0 +1,18 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2011 Timothy Pearson
|
||||||
|
# kb9vqf (AT) pearsoncomputing.net
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
##### other data ################################
|
||||||
|
|
||||||
|
install( FILES
|
||||||
|
chars.kpm finish.kpm glass.kpm golds.kpm metals.kpm shapes.kpm
|
||||||
|
shapes2.kpm shapesq.kpm skies.kpm stars.kpm stones1.kpm stones2.kpm
|
||||||
|
textures.kpm woods.kpm
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kpovmodeler/examples/includes/original )
|
@ -0,0 +1,16 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2010-2011 Calvin Morrison
|
||||||
|
# mutantturkey@gmail.com
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
add_subdirectory( advanced )
|
||||||
|
add_subdirectory( csg )
|
||||||
|
add_subdirectory( interior )
|
||||||
|
add_subdirectory( lights )
|
||||||
|
add_subdirectory( objects )
|
@ -0,0 +1,16 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2011 Timothy Pearson
|
||||||
|
# kb9vqf (AT) pearsoncomputing.net
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
##### other data ################################
|
||||||
|
|
||||||
|
install( FILES
|
||||||
|
ants.kpm bee.kpm ink.kpm table.kpm
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kpovmodeler/examples/scenes/advanced )
|
@ -0,0 +1,16 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2011 Timothy Pearson
|
||||||
|
# kb9vqf (AT) pearsoncomputing.net
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
##### other data ################################
|
||||||
|
|
||||||
|
install( FILES
|
||||||
|
cheese.kpm emptybox.kpm heightfield.kpm
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kpovmodeler/examples/scenes/csg )
|
@ -0,0 +1,16 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2011 Timothy Pearson
|
||||||
|
# kb9vqf (AT) pearsoncomputing.net
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
##### other data ################################
|
||||||
|
|
||||||
|
install( FILES
|
||||||
|
cubes.kpm media1.kpm media2.kpm media3.kpm spheres.kpm
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kpovmodeler/examples/scenes/interior )
|
@ -0,0 +1,16 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2011 Timothy Pearson
|
||||||
|
# kb9vqf (AT) pearsoncomputing.net
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
##### other data ################################
|
||||||
|
|
||||||
|
install( FILES
|
||||||
|
arealight.kpm arealight2.kpm spotlight.kpm
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kpovmodeler/examples/scenes/lights )
|
@ -0,0 +1,17 @@
|
|||||||
|
#################################################
|
||||||
|
#
|
||||||
|
# (C) 2011 Timothy Pearson
|
||||||
|
# kb9vqf (AT) pearsoncomputing.net
|
||||||
|
#
|
||||||
|
# Improvements and feedback are welcome
|
||||||
|
#
|
||||||
|
# This file is released under GPL >= 2
|
||||||
|
#
|
||||||
|
#################################################
|
||||||
|
|
||||||
|
##### other data ################################
|
||||||
|
|
||||||
|
install( FILES
|
||||||
|
allobjects.kpm fractals.kpm lathe.kpm prism.kpm sor.kpm
|
||||||
|
superellipsoid.kpm text.kpm
|
||||||
|
DESTINATION ${DATA_INSTALL_DIR}/kpovmodeler/examples/scenes/objects )
|
Loading…
Reference in new issue