rdbo / libmem

Advanced Game Hacking Library for C, Modern C++, Rust and Python (Windows/Linux/FreeBSD) (Process/Memory Hacking) (Hooking/Detouring) (Cross Platform) (x86/x64/ARM/ARM64) (DLL/SO Injection) (Internal/External) (Assembler/Disassembler)
GNU Affero General Public License v3.0
797 stars 96 forks source link

Fix Windows build for Rust #241

Closed llyama closed 3 months ago

llyama commented 3 months ago

I was running into #233 with Rust failing to compile. The unresolved symbol SHGetKnownFolderPath is in shell32.lib. Adding this as a link dependency fixed the build.

Closes #233.

rdbo commented 3 months ago

After all of this time, I never noticed that keystone needed shell32 Thanks for the fix