From 3de4056df4ea5d0afbcea388ad8d681daea1aac3 Mon Sep 17 00:00:00 2001 From: SulfurNitride Date: Wed, 8 Apr 2026 03:30:04 -0500 Subject: Remove NaK/Rust dependency, port remaining functionality to native C++ Replace NaK Rust crate and nak_ffi with native C++ implementations: - Game detection (Steam, Heroic, Bottles), VDF parser, icon extraction - Prefix symlinks, SLR manager, Steam path detection - Known games database Add FUSE VFS optimizations: zero-copy reads via fuse_reply_data, default_permissions mount option, FUSE_CAP_ASYNC_DIO, FUSE_CAP_EXPIRE_ONLY, lookup cache parent index, cached mode bits, increased I/O buffer sizes. Update build system, prefix setup, and various fixes. Co-Authored-By: Claude Opus 4.6 (1M context) --- CMakeLists.txt | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 3b569ac..8326e89 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,6 @@ if(HAS_NO_DIRECT_EXTERN_ACCESS) endif() option(BUILD_TESTING "Build tests" OFF) -option(BUILD_NAK_FFI "Build NaK Rust FFI library" ON) option(BUILD_BSA_FFI "Build Rust BSA/BA2 FFI library" ON) option(BUILD_DOTNET_PLUGINS "Build C++/CLI .NET plugins (Windows+MSVC only)" OFF) option(BUILD_PLUGIN_PYTHON "Build plugin_python bridge on Linux" ON) @@ -155,11 +154,7 @@ add_subdirectory(libs/7zip) # builds 7z.so from source (Linux only) add_subdirectory(libs/archive) # shared lib, needs dl add_subdirectory(libs/lootcli) # executable, needs Qt6 + boost + libloot + curl -if(BUILD_NAK_FFI) - add_subdirectory(libs/nak_ffi) # Rust FFI lib, before uibase (icon extraction) -endif() - -add_subdirectory(libs/uibase) # shared lib, needs Qt6 + spdlog + nak_ffi (Linux) +add_subdirectory(libs/uibase) # shared lib, needs Qt6 + spdlog if(BUILD_BSA_FFI) add_subdirectory(libs/bsa_ffi) -- cgit v1.3.1