Skip to content

Commit

Permalink
visit: make it extendable for plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
cessenat authored and tgamblin committed May 20, 2021
1 parent 6f75c6f commit bd47eaf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions var/spack/repos/builtin/packages/visit/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ class Visit(CMakePackage):

maintainers = ['cyrush']

extendable = True

version('develop', branch='develop')
version('3.1.1', sha256='0b60ac52fd00aff3cf212a310e36e32e13ae3ca0ddd1ea3f54f75e4d9b6c6cf0')
version('3.0.1', sha256='a506d4d83b8973829e68787d8d721199523ce7ec73e7594e93333c214c2c12bd')
Expand Down Expand Up @@ -231,6 +233,9 @@ def cmake_args(self):
'-DCMAKE_C_FLAGS=' + ' '.join(cc_flags),
]

# Provide the plugin compilation environment so as to extend VisIt
args.append('-DVISIT_INSTALL_THIRD_PARTY=ON')

if spec.satisfies('@3.1:'):
args.append('-DFIXUP_OSX=OFF')

Expand Down

0 comments on commit bd47eaf

Please sign in to comment.