From 8107ff8080cef8e4b934af27060c8b908b87d65a Mon Sep 17 00:00:00 2001 From: neru Date: Thu, 18 Jun 2026 02:33:44 -0300 Subject: [PATCH] build: fix wrong lib link --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fa68fb1..ffd8f2f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -119,7 +119,7 @@ endif() file(GLOB_RECURSE UNLOCKER_SOURCES CONFIGURE_DEPENDS "src/unlocker/*.cpp" "src/unlocker/*.h") add_executable(hex-unlocked ${UNLOCKER_SOURCES}) -target_link_libraries(hex-unlocked PRIVATE dbd-unlocker-warnings seallib glaze::glaze tinymitm) +target_link_libraries(hex-unlocked PRIVATE hex-warned seallib glaze::glaze tinymitm) # rnd exe name string(RANDOM LENGTH 12 ALPHABET "abcdefghijklmnopqrstuvwxyz0123456789" RANDOM_EXE_NAME)