[Cheats] Split gateway and AR

This commit is contained in:
wheremyfoodat 2023-07-19 21:09:44 +03:00
parent 0904638df0
commit ae69c8f8c4
5 changed files with 78 additions and 16 deletions

View file

@ -96,7 +96,7 @@ endif()
set(SOURCE_FILES src/main.cpp src/emulator.cpp src/io_file.cpp src/config.cpp
src/core/CPU/cpu_dynarmic.cpp src/core/CPU/dynarmic_cycles.cpp
src/core/memory.cpp src/renderer.cpp src/core/renderer_null/renderer_null.cpp
src/httpserver.cpp src/stb_image_write.c src/core/cheats.cpp
src/httpserver.cpp src/stb_image_write.c src/core/cheats.cpp src/core/action_replay.cpp
)
set(CRYPTO_SOURCE_FILES src/core/crypto/aes_engine.cpp)
set(KERNEL_SOURCE_FILES src/core/kernel/kernel.cpp src/core/kernel/resource_limits.cpp
@ -150,6 +150,7 @@ set(HEADER_FILES include/emulator.hpp include/helpers.hpp include/termcolor.hpp
include/result/result_gsp.hpp include/result/result_kernel.hpp include/result/result_os.hpp
include/crypto/aes_engine.hpp include/metaprogramming.hpp include/PICA/pica_vertex.hpp
include/config.hpp include/services/ir_user.hpp include/httpserver.hpp include/cheats.hpp
include/action_replay.hpp
)
set(THIRD_PARTY_SOURCE_FILES third_party/imgui/imgui.cpp