[3PP] Replaced cpptoml with tomlplusplus

Also adjusted code that used cpptoml to be used with toml++ and some more changes
This commit is contained in:
Gliniak
2024-02-26 09:30:54 +01:00
parent d246e3bc70
commit 60b31af811
14 changed files with 243 additions and 175 deletions

View File

@@ -11,10 +11,9 @@
#define XENIA_CONFIG_H_
#include <filesystem>
#include "third_party/cpptoml/include/cpptoml.h"
#include "third_party/tomlplusplus/toml.hpp"
std::shared_ptr<cpptoml::table> ParseFile(
const std::filesystem::path& filename);
toml::parse_result ParseFile(const std::filesystem::path& filename);
namespace config {
void SetupConfig(const std::filesystem::path& config_folder);