/usr/lib/cmake/paraview/ParaViewPluginsMacros.cmake is in paraview-dev 4.0.1-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | #==========================================================================
#
# Program: ParaView
#
# Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc.
# All rights reserved.
#
# ParaView is a free software; you can redistribute it and/or modify it
# under the terms of the ParaView license version 1.2.
#
# See License_v1.2.txt for the full ParaView license.
# A copy of this license can be obtained by contacting
# Kitware Inc.
# 28 Corporate Drive
# Clifton Park, NY 12065
# USA
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
#==========================================================================
# This file is similar to vtkModuleMacros.cmake in role. It adds the pv_plugin
# macro used to add plugins (similar to modules for VTK) for ParaView. Plugins
# are expected to include a plugin.cmake file (analogous to module.cmake) file
# which includes the call to pv_plugin() macro.
# Now, to build a plugin to be incorporated into ParaView one puts a
# plugin.cmake file in that directory containing the CMakeLists.txt file to
# create the plugin. At compile time, ParaView searches for plugin.cmake files
# in the ParaView/Plugins root or under locations added explicitly using
# pv_add_plugin_search_path(). The plugin.cmake file should have at most a single call
# to pv_plugin() (the file can skip calling the pv_plugin() macro if decided so
# based on certain cmake variables). This call provides information about the
# plugin to paraview even before trying to process it.
# Then the CMakeLists.txt file has the pertinant code to build the plugin. The
# CMakeLists.txt file will be processed automaticall if the plugin is enabled.
# pv_plugin() macro provides options that can be used to control if the plugin
# is enabled by default, or autoloaded or is named differently (or comprises of multiple
# plugins -- which is rare).
get_filename_component(_ParaViewPluginsMacros_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
include (ParaViewPlugins)
include (CMakeParseArguments)
#------------------------------------------------------------------------------
# USAGE:
# pv_plugin(<NAME>
# # provide a descrption for the plugin.
# [DESCRIPTION <text>]
#
# # if provided, the plugin will be autoloaded on startup.
# [AUTOLOAD]
#
# # if provided, the plugin will be auto-enabled for building.
# # otherwise user has to turn it ON an CMake configure time.
# [DEFAULT_ENABLED]
#
# # <NAME> is generally used as the name of the plugin used for the
# # single call to add_paraview_plugin(). If a different name is
# # used, or more that 1 plugin is added in then all the plugin
# # names must be specified using this argument.
# [PLUGIN_NAMES <name1> <name2>]
# )
macro(pv_plugin _name)
vtk_module_check_name(${_name})
set(pv-plugin ${_name})
set(${pv-plugin}_DESCRIPTION "(plugin)")
set(${pv-plugin}_AUTOLOAD FALSE)
set(${pv-plugin}_DEFAULT_ENABLED FALSE)
set(${pv-plugin}_PLUGIN_NAMES "${_name}")
cmake_parse_arguments("${pv-plugin}"
"AUTOLOAD;DEFAULT_ENABLED" # options
"DESCRIPTION" # one_value_keywords
"PLUGIN_NAMES" # multi_value_keywords
${ARGN})
# set default values.
if (NOT ${pv-plugin}_PLUGIN_NAMES)
set(${pv-plugin}_PLUGIN_NAMES "${_name}")
endif()
if (${pv-plugin}_UNPARSED_ARGUMENTS)
message(AUTHOR_WARNING
"Unrecognized arguments: ${${pv-plugin}_UNPARSED_ARGUMENTS}")
endif()
endmacro()
#------------------------------------------------------------------------------
macro(pv_plugin_impl)
include(plugin.cmake)
endmacro()
#------------------------------------------------------------------------------
macro(pv_add_plugin src f bld)
unset(pv-plugin)
include (${src}/${f} OPTIONAL)
if (DEFINED pv-plugin)
list (APPEND PARAVIEW_PLUGINS_ALL ${pv-plugin})
get_filename_component(${pv-plugin}_BASE ${f} PATH)
set (${pv-plugin}_SOURCE_DIR ${src}/${${pv-plugin}_BASE})
set (${pv-plugin}_BINARY_DIR ${bld}/${${pv-plugin}_BASE})
endif()
unset(pv-plugin)
endmacro()
#------------------------------------------------------------------------------
# Use this macro to add paths to search for plugin.cmake in.
macro(pv_add_plugin_search_path src bld)
list (APPEND pv_plugin_search_path "${src},${bld}")
endmacro()
#------------------------------------------------------------------------------
# Call this macro to load information about available plugins from all
# pv_plugin_search_path locations.
macro(pv_plugin_search_from_paths)
foreach (pair IN LISTS pv_plugin_search_path)
string(REGEX MATCH "^([^,]*),([^,]*)$" _tmp "${pair}")
set (src "${CMAKE_MATCH_1}")
set (bld "${CMAKE_MATCH_2}")
pv_add_plugin("${src}" plugin.cmake "${bld}")
endforeach()
endmacro()
macro(pv_plugin_search_under_root root_src root_build)
file(GLOB_RECURSE files RELATIVE "${root_src}" "${root_src}/plugin.cmake")
foreach(plugin_file IN LISTS files)
get_filename_component(base "${plugin_file}" PATH)
pv_add_plugin("${root_src}/${base}" plugin.cmake "${root_build}/${base}")
endforeach()
endmacro()
#------------------------------------------------------------------------------
# pv_process_plugins() serves as the entry point for processing plugins. A
# top-level cmake file simply sets the plugin paths to search using
# pv_add_plugin_search_path() and then call this macro and this will handle
# searching for the plugins available, providing options for enabling them and
# then processing the cmake files for enabled plugins.
macro(pv_process_plugins root_src root_build)
set(PARAVIEW_EXTERNAL_PLUGIN_DIRS "" CACHE STRING
"Semi-colon seperated paths to extrenal plugin directories.")
mark_as_advanced(PARAVIEW_EXTERNAL_PLUGIN_DIRS)
set (PARAVIEW_PLUGINS_ALL)
pv_plugin_search_under_root(${root_src} ${root_build})
# search for available plugins and load information about them.
pv_plugin_search_from_paths()
# if PARAVIEW_EXTERNAL_PLUGIN_DIRS is specified, we scan those directories
# too.
if (PARAVIEW_EXTERNAL_PLUGIN_DIRS)
foreach(extra_dir ${PARAVIEW_EXTERNAL_PLUGIN_DIRS})
get_filename_component(dir_name "${extra_dir}" NAME)
message(STATUS "Processing external plugins under '${extra_dir}'")
set (build_dir "${ParaView_BINARY_DIR}/ExternalPlugins/${dir_name}")
pv_plugin_search_under_root("${extra_dir}" "${build_dir}")
endforeach()
endif()
# provide options that user can use to enable/disable plugins.
foreach (pv-plugin IN LISTS PARAVIEW_PLUGINS_ALL)
set(PARAVIEW_BUILD_PLUGIN_${pv-plugin} ${${pv-plugin}_DEFAULT_ENABLED}
CACHE BOOL "Build ${pv-plugin} Plugin")
mark_as_advanced(PARAVIEW_BUILD_PLUGIN_${pv-plugin})
endforeach()
# process all enabled plugins.
foreach (pv-plugin IN LISTS PARAVIEW_PLUGINS_ALL)
if (PARAVIEW_BUILD_PLUGIN_${pv-plugin})
message(STATUS "Plugin: ${pv-plugin} - ${${pv-plugin}_DESCRIPTION} : Enabled")
add_subdirectory("${${pv-plugin}_SOURCE_DIR}" "${${pv-plugin}_BINARY_DIR}")
else()
message(STATUS "Plugin: ${pv-plugin} - ${${pv-plugin}_DESCRIPTION} : Disabled")
endif()
endforeach()
# write the .plugins file.
set (PARAVIEW_PLUGINLIST)
set (plugin_ini "<?xml version=\"1.0\"?>\n<Plugins>\n")
foreach (pv-plugin IN LISTS PARAVIEW_PLUGINS_ALL)
if (PARAVIEW_BUILD_PLUGIN_${pv-plugin})
# fill up the PARAVIEW_PLUGINLIST with the names of the libraries for all
# the enabled plugins.
list(APPEND PARAVIEW_PLUGINLIST ${${pv-plugin}_PLUGIN_NAMES})
foreach (libname IN LISTS ${pv-plugin}_PLUGIN_NAMES)
if (${pv-plugin}_AUTOLOAD)
set(plugin_ini
"${plugin_ini} <Plugin name=\"${libname}\" auto_load=\"1\"/>\n")
else ()
set(plugin_ini
"${plugin_ini} <Plugin name=\"${libname}\" auto_load=\"0\"/>\n")
endif()
endforeach()
endif()
endforeach()
set (plugin_ini "${plugin_ini}</Plugins>\n")
file(WRITE "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/.plugins" "${plugin_ini}")
# Install the .plugins configuration file.
install(FILES "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/.plugins"
DESTINATION "${PV_INSTALL_PLUGIN_DIR}"
COMPONENT Runtime)
# write the static plugins init file.
_write_static_plugins_init_file(
${CMAKE_CURRENT_BINARY_DIR}/pvStaticPluginsInit.h
${PARAVIEW_PLUGINLIST})
endmacro()
#------------------------------------------------------------------------------
# Internal function used to generate a header file initializing all plugins that
# can be used by executables to link against the plugins when building
# statically.
function(_write_static_plugins_init_file filename)
set(plugins_init_function "#include \"vtkPVPlugin.h\"\n\n")
# write PV_PLUGIN_IMPORT_INIT calls
foreach(plugin_name ${ARGN})
set(plugins_init_function "${plugins_init_function}PV_PLUGIN_IMPORT_INIT(${plugin_name});\n")
endforeach()
set(plugins_init_function "${plugins_init_function}\n")
# write PV_PLUGIN_IMPORT calls
set(plugins_init_function "${plugins_init_function}inline void paraview_static_plugins_init()\n{\n")
foreach(plugin_name ${ARGN})
set(plugins_init_function "${plugins_init_function} PV_PLUGIN_IMPORT(${plugin_name});\n")
endforeach()
set(plugins_init_function "${plugins_init_function}}\n")
file(WRITE "${filename}" "${plugins_init_function}")
endfunction()
|