mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-01-19 08:30:18 +00:00
dcba8efc83
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
39 lines
758 B
C++
39 lines
758 B
C++
#pragma once
|
|
|
|
#include <cassert>
|
|
#include <cstdint>
|
|
#include <filesystem>
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
#include <tuple>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
//#define TEST_JSON_PERFORMANCE
|
|
|
|
#define USE_SIMDJSON_JSON // 15 seconds
|
|
//#define USE_BOOST_JSON // 32 seconds
|
|
//#define USE_NLOHMANN_JSON // 58 seconds
|
|
//#define USE_JSONCPP_JSON // 88 seconds
|
|
|
|
#ifdef USE_BOOST_JSON
|
|
# include <boost/json.hpp>
|
|
#endif
|
|
|
|
#ifdef USE_NLOHMANN_JSON
|
|
# include "nlohmann/json.hpp"
|
|
#endif
|
|
|
|
#ifdef USE_JSONCPP_JSON
|
|
# define JSON_PREFER_REUSE_OF_PARSER
|
|
# include <json/json.h>
|
|
#endif
|
|
|
|
#ifdef USE_SIMDJSON_JSON
|
|
# define JSON_PREFER_PASS_BY_VALUE
|
|
# define JSON_PREFER_REUSE_OF_PARSER
|
|
# include "simdjson/simdjson.h"
|
|
#endif
|