Skip to content
Snippets Groups Projects
Commit fa563f0f authored by rvinaybharadwaj's avatar rvinaybharadwaj Committed by Christoph Junghans
Browse files

Bumping-up miniVite to version 1.1 (#11828)

* Bumping-up miniVite to version 1.1

* Keeping both version of miniVite

* Changed to >=
parent 5b3f196b
Branches
Tags
No related merge requests found
File added
......@@ -17,6 +17,7 @@ class Minivite(MakefilePackage):
version('develop', branch='master')
version('1.0', tag='v1.0')
version('1.1', tag='v1.1')
variant('openmp', default=True, description='Build with OpenMP support')
variant('opt', default=True, description='Optimization flags')
......@@ -43,4 +44,7 @@ def build_targets(self):
def install(self, spec, prefix):
mkdirp(prefix.bin)
install('dspl', prefix.bin)
if (self.version >= Version('1.1')):
install('miniVite', prefix.bin)
elif (self.version >= Version('1.0')):
install('dspl', prefix.bin)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment