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 175 176 177
|
# bindings/tk/CMakeLists.txt
### Process this file with cmake to produce Makefile
###
# Copyright (C) 2006 Alan W. Irwin
#
# This file is part of PLplot.
#
# PLplot is free software; you can redistribute it and/or modify
# it under the terms of the GNU Library General Public License as published
# by the Free Software Foundation; version 2 of the License.
#
# PLplot is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Library General Public License for more details.
#
# You should have received a copy of the GNU Library General Public License
# along with PLplot; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
if(ENABLE_tkX)
include_directories(
${TCL_INCLUDE_PATH}
${TK_INCLUDE_PATH}
${CMAKE_SOURCE_DIR}/include
${CMAKE_SOURCE_DIR}/bindings/tcl
${CMAKE_SOURCE_DIR}/lib/qsastime
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_BINARY_DIR}
${CMAKE_BINARY_DIR}/include
)
if(BUILD_SHARED_LIBS)
set_source_files_properties(plserver.c
PROPERTIES COMPILE_FLAGS "-DUSINGPLDLL" )
endif(BUILD_SHARED_LIBS)
add_executable(plserver plserver.c)
target_link_libraries(plserver plplot${LIB_TAG} plplottcltk_Main${LIB_TAG} plplottcltk${LIB_TAG} ${TK_LIBRARY} ${TCL_LIBRARY})
if(USE_RPATH)
get_target_property(LIB_INSTALL_RPATH plplot${LIB_TAG} INSTALL_RPATH)
list(APPEND LIB_INSTALL_RPATH ${TCL_TK_ITCL_ITK_RPATH})
filter_rpath(LIB_INSTALL_RPATH)
set_target_properties(plserver
PROPERTIES
INSTALL_RPATH "${LIB_INSTALL_RPATH}"
)
endif(USE_RPATH)
install(TARGETS plserver
EXPORT export_plplot
DESTINATION ${LIBEXEC_DIR}
)
endif(ENABLE_tkX)
if(ENABLE_tk)
set(include_INSTALLED_HEADERS
pltk.h
)
install(FILES ${include_INSTALLED_HEADERS} DESTINATION ${INCLUDE_DIR})
set(tcldata
FileSelector.tcl
Pltkwin.tcl
about.tcl
help_gui.tcl
help_keys.tcl
help_tcltk.tcl
plclient.tcl
plcolor.tcl
plconfig.tcl
pldefaults.tcl
plplot.tcl
plserver.tcl
pltools.tcl
plwidget.tcl
)
set(itkdata
PLWin.itk
PLXWin.itk
)
set(paldata
cmap0a.pal
cmap1a.pal
cmap1a1.pal
cmap1b.pal
cmap1c.pal
cmap1d.pal
)
# Ugly hack to copy all .tcl files to the build tree so that tclIndex
# can be generated there. This is a limitation is tcl's auto_mkindex which
# always generates the index in the directory with the files.
if(NOT CMAKE_CURRENT_BINARY_DIR STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}")
set(tclIndex_DEPENDS)
foreach(file ${tcldata} ${itkdata})
set(
tclIndex_DEPENDS
${tclIndex_DEPENDS}
${CMAKE_CURRENT_BINARY_DIR}/${file}
)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/${file}
COMMAND ${CMAKE_COMMAND} -E copy
${CMAKE_CURRENT_SOURCE_DIR}/${file} ${CMAKE_CURRENT_BINARY_DIR}
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/${file}
)
endforeach(file ${tcldata} ${itkdata})
add_custom_target(tcl_files ALL DEPENDS ${tclIndex_DEPENDS})
else(NOT CMAKE_CURRENT_BINARY_DIR STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}")
set(tclIndex_DEPENDS ${tcldata} ${itkdata})
endif(NOT CMAKE_CURRENT_BINARY_DIR STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}")
install(
FILES ${tcldata} ${itkdata} ${paldata}
DESTINATION ${TCL_DIR}
)
add_custom_command(
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/tclIndex
COMMAND ${TCL_TCLSH} ${MKTCLINDEX} ${MKTCLINDEX_ARGS}
DEPENDS ${tclIndex_DEPENDS}
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
)
add_custom_target(tclIndex_tk ALL
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/tclIndex
)
# The tcl_files dependency is required to
# work around CMake 2-level make recursion issue where independent
# file dependency chains that refer to the same files must have
# target dependencies between them in order to work for parallel
# builds (and possibly some visual studio builds).
if(NOT CMAKE_CURRENT_BINARY_DIR STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}")
add_dependencies(tclIndex_tk tcl_files)
endif(NOT CMAKE_CURRENT_BINARY_DIR STREQUAL "${CMAKE_CURRENT_SOURCE_DIR}")
install(
FILES ${CMAKE_CURRENT_BINARY_DIR}/tclIndex
DESTINATION ${TCL_DIR}
)
set(DRV_HARDDIR ${DRV_DIR})
set(LIB_HARDDIR ${LIB_DIR})
get_target_property(
DLNAME_LIBPLPLOT
plplot${LIB_TAG}
LOCATION
)
get_filename_component(
DLNAME_LIBPLPLOT
${DLNAME_LIBPLPLOT}
NAME
)
string(REPLACE "plplotd" "plplot"
DLNAME_LIBPLPLOT
${DLNAME_LIBPLPLOT}
)
string(REPLACE "plplot" "plplotd"
DLNAME_LIBPLPLOTD
${DLNAME_LIBPLPLOT}
)
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/pkgIndex.tcl.in
${CMAKE_CURRENT_BINARY_DIR}/pkgIndex.tcl
@ONLY
)
endif(ENABLE_tk)
|