[requires]
rapidjson/cci.20220822
NoteSimplest use case consuming this recipe and assuming CMake as your local build tool:
If you are new with Conan, we recommend to read the section how to consume packages.If you need additional assistance, please ask a question in the Conan Center Index repository.
[requires]
rapidjson/cci.20220822
[generators]
CMakeDeps
CMakeToolchain
[layout]
cmake_layout
Now, you can run this Conan command to locally install (and build if necessary) this recipe and its dependencies (if any):
$ conan install conanfile.txt --build=missing
Useful information to take into account to consume this library:
These are the main declared targets:
RapidJSON
rapidjson
rapidjson.pc
A simple use case using the CMake file name and the global target:
# ...
find_package(RapidJSON REQUIRED)
# ...
target_link_libraries(YOUR_TARGET rapidjson)
These are all the available headers. Some of these ones might be non-public; make sure of it by visiting the rapidjson
homepage listed above:
#include "rapidjson/allocators.h"
#include "rapidjson/cursorstreamwrapper.h"
#include "rapidjson/document.h"
#include "rapidjson/encodedstream.h"
#include "rapidjson/encodings.h"
#include "rapidjson/error/en.h"
#include "rapidjson/error/error.h"
#include "rapidjson/filereadstream.h"
#include "rapidjson/filewritestream.h"
#include "rapidjson/fwd.h"
#include "rapidjson/internal/biginteger.h"
#include "rapidjson/internal/clzll.h"
#include "rapidjson/internal/diyfp.h"
#include "rapidjson/internal/dtoa.h"
#include "rapidjson/internal/ieee754.h"
#include "rapidjson/internal/itoa.h"
#include "rapidjson/internal/meta.h"
#include "rapidjson/internal/pow10.h"
#include "rapidjson/internal/regex.h"
#include "rapidjson/internal/stack.h"
#include "rapidjson/internal/strfunc.h"
#include "rapidjson/internal/strtod.h"
#include "rapidjson/internal/swap.h"
#include "rapidjson/istreamwrapper.h"
#include "rapidjson/memorybuffer.h"
#include "rapidjson/memorystream.h"
#include "rapidjson/msinttypes/inttypes.h"
#include "rapidjson/msinttypes/stdint.h"
#include "rapidjson/ostreamwrapper.h"
#include "rapidjson/pointer.h"
#include "rapidjson/prettywriter.h"
#include "rapidjson/rapidjson.h"
#include "rapidjson/reader.h"
#include "rapidjson/schema.h"
#include "rapidjson/stream.h"
#include "rapidjson/stringbuffer.h"
#include "rapidjson/uri.h"
#include "rapidjson/writer.h"