Skip to content

Commit

Permalink
xmake related fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
maximegmd committed Dec 27, 2020
1 parent dc67304 commit b9467c2
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Code/core/include/Filesystem.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <filesystem>
#include <Stl.hpp>
#include "Stl.hpp"

namespace TiltedPhoques
{
Expand Down
4 changes: 2 additions & 2 deletions Code/core/include/Serialization.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

#include <Buffer.hpp>
#include <Stl.hpp>
#include "Buffer.hpp"
#include "Stl.hpp"

namespace TiltedPhoques
{
Expand Down
2 changes: 1 addition & 1 deletion Code/core/include/Signal.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <functional>
#include <algorithm>

#include <Stl.hpp>
#include "Stl.hpp"

namespace TiltedPhoques
{
Expand Down
2 changes: 1 addition & 1 deletion Code/core/include/Stl.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <StlAllocator.hpp>
#include "StlAllocator.hpp"

#include <unordered_set>
#include <unordered_map>
Expand Down
2 changes: 1 addition & 1 deletion Code/core/include/Vector3.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <Math.hpp>
#include "Math.hpp"

namespace TiltedPhoques
{
Expand Down
3 changes: 2 additions & 1 deletion xmake.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
set_languages("cxx17")

add_requires("mimalloc", "catch2")
add_requires("mimalloc", {config = {rltgenrandom = true }})
add_requires("catch2")

target("TiltedCore")
set_kind("static")
Expand Down

0 comments on commit b9467c2

Please sign in to comment.