diff options
author | 2021-12-21 10:54:20 -0800 | |
---|---|---|
committer | 2021-12-21 10:54:20 -0800 | |
commit | 67cbc471bdd94217d34ee2e8b8ccda5dc93cfa7d (patch) | |
tree | c53118ff7774d077b03c7026050a7861bf0cd614 /setup.py | |
parent | 038af1cc1ebf250d0633f21d4a2579c1bad03f34 (diff) | |
download | WarpX-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.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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') |