Browse Source

= missing for custom argument in setup.py

refactoring
Matthias Volk 8 years ago
parent
commit
53066d0e5a
  1. 4
      setup.py

4
setup.py

@ -21,7 +21,7 @@ class CMakeExtension(Extension):
class CMakeBuild(build_ext):
user_options = build_ext.user_options + [
('storm-dir', None, 'Path to storm root (binary) location')
('storm-dir=', None, 'Path to storm root (binary) location')
]
def run(self):
@ -40,6 +40,8 @@ class CMakeBuild(build_ext):
self.storm_dir = None
def finalize_options(self):
if self.storm_dir:
print('The custom storm directory', self.storm_dir)
build_ext.finalize_options(self)

Loading…
Cancel
Save