Skip to content

Commit

Permalink
[XML] Deleted XmlDocument since it was wrapping pugixml for no good r…
Browse files Browse the repository at this point in the history
…eason, pugxml is now used directly and it's has been include in the engine as source (not a dependency anymore)
  • Loading branch information
PanosK92 committed Sep 25, 2023
1 parent 9a52ede commit 87189d0
Show file tree
Hide file tree
Showing 10 changed files with 347 additions and 670 deletions.
1 change: 0 additions & 1 deletion build_scripts/premake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ function runtime_project_configuration()
includedirs { "../third_party/free_type" }
includedirs { "../third_party/compressonator" }
includedirs { "../third_party/renderdoc" }
includedirs { "../third_party/pugixml" }
includedirs(API_INCLUDES[ARG_API_GRAPHICS] or {})
includedirs { "../runtime/Core" } -- This is here because clang needs the full pre-compiled header path

Expand Down
5 changes: 3 additions & 2 deletions runtime/Core/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include "../Core/ThreadPool.h"
#include "../Rendering/Renderer.h"
#include "../Input/Input.h"
#include "../IO/XmlDocument.h"
#include "pugixml.hpp"
SP_WARNINGS_OFF
#include "../IO/pugixml.hpp"
SP_WARNINGS_ON
//=================================

//= NAMESPACES ================
Expand Down
356 changes: 0 additions & 356 deletions runtime/IO/XmlDocument.cpp

This file was deleted.

Loading

0 comments on commit 87189d0

Please sign in to comment.