mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-06-10 09:18:04 +00:00
Windows build fails with "The network name cannot be found" error when built with encryption. That's because the std::fs::canocalize() function returns UNC paths on Windows, which confuses CMake to fail. Switch to std::env::current_dir() instead, which returns paths that CMake can deal with.