Skip to content

Commit ff444c7

Browse files
authored
πŸ’š fix build error for compile tool updating (#28)
1 parent 7cdbdae commit ff444c7

5 files changed

Lines changed: 3 additions & 6 deletions

File tree

β€Ž.clangdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CompileFlags:
2-
Add: [-xc++, -std=c++20, -W4, -Wno-missing-prototypes]
2+
Add: [-std=c++20, -W4, -Wno-missing-prototypes]
33
# Remove extra warnings specified in compile commands.
44
# Single value is also acceptable, same as "Remove: [-mabi]"
55
Compiler: clang-cl

β€Žhitagi/debugger/include/hitagi/debugger/debug_manager.hppβ€Ž

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
#include <hitagi/math/transform.hpp>
55
#include <hitagi/gfx/gpu_resource.hpp>
66

7-
#include <unordered_map>
8-
97
namespace hitagi::debugger {
108
class DebugManager : public RuntimeModule {
119
public:

β€Žhitagi/debugger/xmake.luaβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ target("debugger")
22
set_kind("static")
33
add_files("src/*.cpp")
44
add_includedirs("include", {public = true})
5-
add_deps("core", "gfx")
5+
add_deps("core", "gfx", "math")

β€Žhitagi/gfx/include/hitagi/gfx/common_types.hppβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
#include <cstdint>
77
#include <variant>
8-
#include <vector>
98

109
namespace hitagi::gfx {
1110

β€Žhitagi/gfx/xmake.luaβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,4 @@ target("render_graph")
7575
target("gfx")
7676
set_kind("phony")
7777
add_includedirs("include", {public = true})
78-
add_deps("render_graph", "gfx_resource", "gfx_device", {inherit = false})
78+
add_deps("render_graph", "gfx_resource", "gfx_device", {public = true})

0 commit comments

Comments
Β (0)