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 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
|
# bindings/wxwidgets/CMakeLists.txt
### Process this file with cmake to produce Makefile
###
# Copyright (C) 2007 Werner Smekal
#
# 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_wxwidgets AND ENABLE_cxx)
set(plplotwxwidgets${LIB_TAG}_LIB_SRCS
wxPLplotstream.cpp
wxPLplotwindow.cpp
)
# configure header file - we need to make sure, that the user of the bindings
# can't set the wrong options (use freetype/agg)
CONFIGURE_FILE(
${CMAKE_CURRENT_SOURCE_DIR}/wxPLplotstream.h.in
${CMAKE_CURRENT_BINARY_DIR}/wxPLplotstream.h
)
set(plplotwxwidgets${LIB_TAG}_INSTALLED_HEADERS
${CMAKE_CURRENT_BINARY_DIR}/wxPLplotstream.h
wxPLplotwindow.h
)
# Set the include path
include_directories(
${CMAKE_SOURCE_DIR}/include
${CMAKE_SOURCE_DIR}/lib/qsastime
${CMAKE_SOURCE_DIR}/bindings/c++
${CMAKE_BINARY_DIR}
${CMAKE_BINARY_DIR}/include
${CMAKE_CURRENT_BINARY_DIR}
)
# Create plplotwxwidgets[d] library
add_library(plplotwxwidgets${LIB_TAG} ${plplotwxwidgets${LIB_TAG}_LIB_SRCS})
if(NON_TRANSITIVE)
# empty list ==> non-transitive linking for everything that links to
# libplplotwxwidgetsd in the shared libraries case.
target_link_libraries(plplotwxwidgets${LIB_TAG} LINK_INTERFACE_LIBRARIES)
# This configures the pkg-config method to use non-transitive linking.
set(PC_REQUIRES_TAG "Requires.private")
else(NON_TRANSITIVE)
# This configures the pkg-config method to use transitive linking
set(PC_REQUIRES_TAG "Requires")
endif(NON_TRANSITIVE)
if(BUILD_SHARED_LIBS)
SET_SOURCE_FILES_PROPERTIES(${plplotwxwidgets${LIB_TAG}_LIB_SRCS}
PROPERTIES COMPILE_FLAGS "${wxwidgets_COMPILE_FLAGS} -DUSINGDLL"
)
else(BUILD_SHARED_LIBS)
SET_SOURCE_FILES_PROPERTIES(${plplotwxwidgets${LIB_TAG}_LIB_SRCS}
PROPERTIES COMPILE_FLAGS "${wxwidgets_COMPILE_FLAGS}"
)
endif(BUILD_SHARED_LIBS)
INCLUDE_DIRECTORIES( ${wxWidgets_INCLUDE_DIRS} )
IF(wxWidgets_DEFINITIONS)
SET_PROPERTY(DIRECTORY APPEND
PROPERTY COMPILE_DEFINITIONS ${wxWidgets_DEFINITIONS})
ENDIF(wxWidgets_DEFINITIONS)
IF(wxWidgets_DEFINITIONS_DEBUG)
SET_PROPERTY(DIRECTORY APPEND
PROPERTY COMPILE_DEFINITIONS_DEBUG ${wxWidgets_DEFINITIONS_DEBUG})
ENDIF(wxWidgets_DEFINITIONS_DEBUG)
target_link_libraries(
plplotwxwidgets${LIB_TAG}
plplotcxx${LIB_TAG}
plplot${LIB_TAG}
${wxwidgets_LINK_FLAGS}
)
if(USE_RPATH)
get_target_property(LIB_INSTALL_RPATH plplot${LIB_TAG} INSTALL_RPATH)
list(APPEND LIB_INSTALL_RPATH ${wxwidgets_RPATH})
filter_rpath(LIB_INSTALL_RPATH)
set_target_properties(plplotwxwidgets${LIB_TAG}
PROPERTIES
SOVERSION ${plplotwxwidgets_SOVERSION}
VERSION ${plplotwxwidgets_VERSION}
INSTALL_RPATH "${LIB_INSTALL_RPATH}"
INSTALL_NAME_DIR "${LIB_DIR}"
)
else(USE_RPATH)
set_target_properties(plplotwxwidgets${LIB_TAG}
PROPERTIES
SOVERSION ${plplotwxwidgets_SOVERSION}
VERSION ${plplotwxwidgets_VERSION}
INSTALL_NAME_DIR "${LIB_DIR}"
)
endif(USE_RPATH)
# Install library in lib/
install(TARGETS plplotwxwidgets${LIB_TAG}
EXPORT export_plplot
ARCHIVE DESTINATION ${LIB_DIR}
LIBRARY DESTINATION ${LIB_DIR}
RUNTIME DESTINATION ${BIN_DIR}
)
install(FILES
${plplotwxwidgets${LIB_TAG}_INSTALLED_HEADERS}
DESTINATION ${INCLUDE_DIR}
)
# Configure pkg-config *.pc file corresponding to libplplotwxwidgets${LIB_TAG}
if(PKG_CONFIG_EXECUTABLE)
if(LIB_TAG)
set(PC_PRECISION "double")
else(LIB_TAG)
set(PC_PRECISION "single")
endif(LIB_TAG)
# Determine libplplotwxwidgets${LIB_TAG}_COMPILE_FLAGS
set(wxWidgets_DEFINITIONS_all "${wxWidgets_DEFINITIONS}")
if(wxWidgets_DEFINITIONS_DEBUG)
set(wxWidgets_DEFINITIONS_all "${wxWidgets_DEFINITIONS};${wxWidgets_DEFINITIONS_DEBUG}")
endif(wxWidgets_DEFINITIONS_DEBUG)
STRING(REGEX REPLACE ";" " -D"
libplplotwxwidgets${LIB_TAG}_COMPILE_FLAGS
"-D${wxWidgets_DEFINITIONS_all}"
)
STRING(REGEX REPLACE ";" " -I"
wxWidgets_IFLAGS
"-I${wxWidgets_INCLUDE_DIRS}"
)
set(libplplotwxwidgets${LIB_TAG}_COMPILE_FLAGS
"${libplplotwxwidgets${LIB_TAG}_COMPILE_FLAGS} ${wxWidgets_IFLAGS}"
)
# Determine libplplotwxwidgets${LIB_TAG}_LINK_FLAGS
pkg_config_link_flags(
libplplotwxwidgets${LIB_TAG}_LINK_FLAGS
"${wxwidgets_LINK_FLAGS}"
)
# Each list element must consist of a colon-separated string with the
# following fields which are parsed out in the foreach loop below and
# used to configure the corresponding pkg-config *.pc file.
# BINDING - ENABLE_${BINDING} keeps track of whether a
# binding has been enabled (ON) or not (OFF).
# Also, ${BINDING} used to determine PC_FILE_SUFFIX
# which helps to determine name of configured
# *.pc file.
# PC_SHORT_NAME - Used in *.pc NAME: field
# PC_LONG_NAME - Used in *.pc Description: field
# PC_LIBRARY_NAME - Used in *.pc Libs: field
# Also used to determine PC_LINK_FLAGS and
# PC_COMPILE_FLAGS used in *.pc Libs: and Cflags:
# fields.
set(PC_DATA "wxwidgets:wxWidgets:wxWidgets bindings, :plplotwxwidgets${LIB_TAG}")
string(REGEX REPLACE "^(.*):.*:.*:.*$" "\\1" BINDING ${PC_DATA})
set(PC_FILE_SUFFIX "-${BINDING}")
set(PC_REQUIRES "plplot${LIB_TAG}-c++")
string(REGEX REPLACE "^.*:(.*):.*:.*$" "\\1" PC_SHORT_NAME ${PC_DATA})
string(REGEX REPLACE "^.*:.*:(.*):.*$" "\\1" PC_LONG_NAME ${PC_DATA})
string(REGEX REPLACE "^.*:.*:.*:(.*)$" "\\1" PC_LIBRARY_NAME ${PC_DATA})
set(PC_LINK_FLAGS "${lib${PC_LIBRARY_NAME}_LINK_FLAGS}")
set(PC_COMPILE_FLAGS "${lib${PC_LIBRARY_NAME}_COMPILE_FLAGS}")
if(NON_TRANSITIVE)
set(PC_LINK_FLAGS "-lplplot${LIB_TAG} -lplplotcxx${LIB_TAG} ${PC_LINK_FLAGS}")
endif(NON_TRANSITIVE)
set(PC_LINK_FLAGS "-l${PC_LIBRARY_NAME} ${PC_LINK_FLAGS}")
set(PC_CONFIGURED_FILE
${CMAKE_BINARY_DIR}/pkgcfg/plplot${LIB_TAG}${PC_FILE_SUFFIX}.pc
)
configure_file(
${CMAKE_SOURCE_DIR}/pkgcfg/plplot-template.pc.in
${PC_CONFIGURED_FILE}
@ONLY
)
install(FILES ${PC_CONFIGURED_FILE} DESTINATION ${PKG_CONFIG_DIR})
endif(PKG_CONFIG_EXECUTABLE)
endif(ENABLE_wxwidgets AND ENABLE_cxx)
|