aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorGravatar Axel Huebl <axel.huebl@plasma.ninja> 2021-12-21 10:54:20 -0800
committerGravatar GitHub <noreply@github.com> 2021-12-21 10:54:20 -0800
commit67cbc471bdd94217d34ee2e8b8ccda5dc93cfa7d (patch)
treec53118ff7774d077b03c7026050a7861bf0cd614 /setup.py
parent038af1cc1ebf250d0633f21d4a2579c1bad03f34 (diff)
downloadWarpX-67cbc471bdd94217d34ee2e8b8ccda5dc93cfa7d.tar.gz
WarpX-67cbc471bdd94217d34ee2e8b8ccda5dc93cfa7d.tar.zst
WarpX-67cbc471bdd94217d34ee2e8b8ccda5dc93cfa7d.zip
CMake: openPMD on by default (#2698)
openPMD builds are stable enough to be default-ON. Due to lacking heuristicst, we don't enable openPMD by default in GNUmake. (Further environments hints, e.g. `PKG_CONFIG_PATH`, or a system-path install are needed there.)
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index fea78791e..8fea070f8 100644
--- a/setup.py
+++ b/setup.py
@@ -184,7 +184,7 @@ env = os.environ.copy()
WARPX_COMPUTE = env.pop('WARPX_COMPUTE', 'OMP')
WARPX_MPI = env.pop('WARPX_MPI', 'OFF')
WARPX_EB = env.pop('WARPX_EB', 'OFF')
-WARPX_OPENPMD = env.pop('WARPX_OPENPMD', 'OFF')
+WARPX_OPENPMD = env.pop('WARPX_OPENPMD', 'ON')
WARPX_PRECISION = env.pop('WARPX_PRECISION', 'DOUBLE')
WARPX_PSATD = env.pop('WARPX_PSATD', 'OFF')
WARPX_QED = env.pop('WARPX_QED', 'ON')