build: Make tracing library a static library

This commit is contained in:
WerWolv
2025-05-29 14:02:06 +02:00
parent 9d12cd64d3
commit ac67e985af

View File

@@ -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
)