cmake: Refactor library management

This commit is contained in:
GPUCode 2023-11-05 13:22:18 +02:00
parent c126925dd9
commit 6e28ac711f
8 changed files with 69 additions and 79 deletions

View file

@ -1,6 +1,6 @@
#pragma once
#include "Zydis.h"
#include <Zydis/Zydis.h>
#include "../types.h"
class Disassembler

View file

@ -3,7 +3,7 @@
#include <fstream>
#include <string>
#include <fmt/core.h>
#include <toml11/toml.hpp>
#include <toml.hpp>
namespace Config {

View file

@ -1,6 +1,6 @@
#include "gpu_memory.h"
#include <xxhash/xxh3.h>
#include <xxh3.h>
#include "Emulator/Util/singleton.h"

View file

@ -2,7 +2,7 @@
#include "../virtual_memory.h"
#include <Util/log.h>
#include <fmt/core.h>
#include "Zydis.h"
#include <Zydis/Zydis.h>
#include <Util/string_util.h>
#include "Util/aerolib.h"
#include "Loader/SymbolsResolver.h"

View file

@ -16,4 +16,4 @@ namespace Discord {
void update(RPCStatus status, const std::string& title);
void stop();
};
} // namespace Discord
} // namespace Discord

View file

@ -1,7 +1,7 @@
#pragma once
#include <core/PS4/HLE/Graphics/graphics_render.h>
#include <SDL.h>
#include <src/video/khronos/vulkan/vulkan_core.h>
#include <vulkan/vulkan_core.h>
#include <vector>