From ac67e985af4ae5c441b949efc67416c661ad5ed0 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Thu, 29 May 2025 14:02:06 +0200 Subject: [PATCH] build: Make tracing library a static library --- lib/trace/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/trace/CMakeLists.txt b/lib/trace/CMakeLists.txt index a7e2eb811..068c55187 100644 --- a/lib/trace/CMakeLists.txt +++ b/lib/trace/CMakeLists.txt @@ -2,7 +2,7 @@ project(tracing) option(IMHEX_TRACE_EXCEPTIONS "Hook thrown exceptions to display a stack trace when possible" ON) -add_library(tracing OBJECT +add_library(tracing STATIC source/stacktrace.cpp source/exceptions.cpp )