build: Make SDK not try to link to unbundled libraries

This commit is contained in:
WerWolv
2024-01-04 00:37:56 +01:00
parent c402d58685
commit ff48d37598
14 changed files with 23 additions and 21 deletions

View File

@@ -0,0 +1,20 @@
#pragma once
#include <hex.hpp>
#include <string>
#include <vector>
namespace hex::stacktrace {
struct StackFrame {
std::string file;
std::string function;
u32 line;
};
void initialize();
std::vector<StackFrame> getStackTrace();
}