From 7c80ece7156a3d0af12b080d451a5eb9c07c800f Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Tue, 13 Nov 2018 22:46:27 +0100 Subject: [PATCH] find_package: JSON Component The CMake `COMPONENT` called `JSON` is supported as well. --- CHANGELOG.rst | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ed5f660e1f..412f831fe4 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -26,7 +26,7 @@ Features - ``store_chunk`` argument order changed, defaults added #386 - works with Python 3.7 #376 - setup.py for sdist #240 -- Backends: JSON support added #384 #338 +- Backends: JSON support added #384 #393 #338 Bug Fixes """"""""" diff --git a/README.md b/README.md index 9f86145efa..88a1b80e9f 100644 --- a/README.md +++ b/README.md @@ -225,7 +225,7 @@ export CMAKE_PREFIX_PATH=$HOME/somepath:$CMAKE_PREFIX_PATH Use the following lines in your project's `CMakeLists.txt`: ```cmake -# supports: COMPONENTS MPI NOMPI HDF5 ADIOS1 ADIOS2 +# supports: COMPONENTS MPI NOMPI JSON HDF5 ADIOS1 ADIOS2 find_package(openPMD 0.1.0 CONFIG) if(openPMD_FOUND)