skjadfahasdf

This commit is contained in:
SimoZ64
2025-04-28 15:53:47 +02:00
parent 0cb479dda8
commit 3f14a99ea0
3 changed files with 15 additions and 1 deletions

View File

@@ -41,7 +41,10 @@ include_directories(
../../external/SDL/include
../../external/sse2neon
../../external/capstone/include
../../external/imgui
../../external/imgui/backends
../../external/cflags/include
ImGuiImpl/
)
option(RAPIDJSON_BUILD_DOC "Build rapidjson documentation." OFF)
@@ -96,6 +99,7 @@ add_subdirectory(../../external/parallel-rdp parallel-rdp)
add_subdirectory(../../external/unarr unarr)
add_subdirectory(../../external/SDL SDL)
add_subdirectory(../../external/cflags cflags)
add_subdirectory(../../external/imgui imgui)
set(CAPSTONE_ARCHITECTURE_DEFAULT OFF)
set(CAPSTONE_MIPS_SUPPORT ON)
set(CAPSTONE_X86_SUPPORT ON)
@@ -123,7 +127,7 @@ add_executable(kaizen
Debugger.hpp
Debugger.cpp)
target_link_libraries(kaizen PUBLIC SDL3::SDL3 SDL3::SDL3-static cflags::cflags discord-rpc fmt mio nlohmann_json parallel-rdp capstone backend)
target_link_libraries(kaizen PUBLIC imgui SDL3::SDL3 SDL3::SDL3-static cflags::cflags discord-rpc fmt mio nlohmann_json parallel-rdp capstone backend)
target_compile_definitions(kaizen PUBLIC SDL_MAIN_HANDLED)
file(COPY ../../resources/ DESTINATION ${PROJECT_BINARY_DIR}/resources/)

View File

@@ -0,0 +1,6 @@
#pragma once
#include <imgui.h>
namespace gui {
}