remove nlohmann_json

This commit is contained in:
Andrey Zimin 2024-05-15 18:04:15 +03:00
parent b1d693dbd4
commit 4408215c7a
3 changed files with 1 additions and 4 deletions

View File

@ -41,7 +41,6 @@ deps = [
subproject('glad').get_variable('glad_dep'),
subproject('hack').get_variable('hack_dep'),
subproject('imgui').get_variable('imgui_dep'),
subproject('nlohmann_json').get_variable('nlohmann_json_dep'),
subproject('glm').get_variable('glm_dep'),
]

View File

@ -9,6 +9,7 @@
#include <future>
#include <fstream>
#include <numeric>
#include <filesystem>
/*
Если первым включен glad
@ -28,4 +29,3 @@
#include "imgui.h"
#include "imgui_impl_glfw.h"
#include "imgui_impl_opengl3.h"
#include "nlohmann/json.hpp"

View File

@ -9,8 +9,6 @@ namespace VE
template<typename Layer>
using layers_stack = std::vector<Layer*>;
using JSON = nlohmann::json;
}