Skip to content
Snippets Groups Projects

Merge of small MRs that make changes to the Python bindings

Merged Andreas Dedner requested to merge features/combinedPythonMRs into master
Compare and Show latest version
1 file
+ 0
3
Compare changes
  • Side-by-side
  • Inline
@@ -265,15 +265,12 @@ def cmakeFlags():
]))
# test environment for additional flags
cmakeFlags = os.environ.get('DUNE_CMAKE_FLAGS')
print("@@@@@ cmakeFlags=",cmakeFlags,flush=True)
# split cmakeFlags and add them to flags
if cmakeFlags is not None:
flags += shlex.split(cmakeFlags)
cmakeFlags = os.environ.get('CMAKE_FLAGS')
print("@@@@@ cmakeFlags=",cmakeFlags,flush=True)
if cmakeFlags is not None:
flags += shlex.split(cmakeFlags)
print("@@@@@ flags=",flags,flush=True)
return flags
def inVEnv():
Loading