Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ParaView
ParaView-Superbuild
Commits
a2970186
Commit
a2970186
authored
Dec 15, 2017
by
Ben Boeckel
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
paraview: install Python modules if enabled
parent
3491da09
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
37 deletions
+25
-37
projects/paraview.bundle.common.cmake
projects/paraview.bundle.common.cmake
+25
-37
No files found.
projects/paraview.bundle.common.cmake
View file @
a2970186
...
...
@@ -47,48 +47,36 @@ endif ()
set
(
python_modules
cinema_python
pygments
six
)
pygments
)
if
(
numpy_built_by_superbuild
)
list
(
APPEND python_modules
numpy
)
endif
()
if
(
scipy_built_by_superbuild
)
list
(
APPEND python_modules
scipy
)
endif
()
if
(
matplotlib_built_by_superbuild
)
list
(
APPEND python_modules
matplotlib
)
endif
()
if
(
paraviewweb_enabled
)
list
(
APPEND python_modules
autobahn
constantly
hyperlink
incremental
twisted
txaio
wslink
zope
)
if
(
WIN32
)
macro
(
check_for_python_module project module
)
if
(
${
project
}
_built_by_superbuild
)
list
(
APPEND python_modules
adodbapi
isapi
pythoncom
win32com
)
"
${
module
}
"
)
endif
()
endmacro
()
check_for_python_module
(
numpy numpy
)
check_for_python_module
(
scipy scipy
)
check_for_python_module
(
matplotlib matplotlib
)
check_for_python_module
(
pythonsix six
)
check_for_python_module
(
pythonautobahn autobahn
)
check_for_python_module
(
pythonconstantly constantly
)
check_for_python_module
(
pythonhyperlink hyperlink
)
check_for_python_module
(
pythonincremental incremental
)
check_for_python_module
(
pythontwisted twisted
)
check_for_python_module
(
pythontxaio txaio
)
check_for_python_module
(
pythonwslink wslink
)
check_for_python_module
(
pythonzopeinterface zope
)
if
(
WIN32
)
check_for_python_module
(
pywin32 adodbapi
)
check_for_python_module
(
pywin32 isapi
)
check_for_python_module
(
pywin32 pythoncom
)
check_for_python_module
(
pywin32 win32com
)
endif
()
if
(
mpi_enabled
)
list
(
APPEND python_modules
mpi4py
)
endif
()
check_for_python_module
(
pythonmpi4py mpi4py
)
function
(
paraview_add_plugin output
)
set
(
contents
"<?xml version=
\"
1.0
\"
?>
\n
<Plugins>
\n
</Plugins>
\n
"
)
...
...
Ben Boeckel
@ben.boeckel
mentioned in commit
91550eaa
·
Jan 11, 2018
mentioned in commit
91550eaa
mentioned in commit 91550eaada9f31ea5ffc3d942ff9965dec082943
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment