From 4300504e108738e25883a37196523f249788a7e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20L=C3=B3pez?= <120128034+victor-Lopez25@users.noreply.github.com> Date: Sat, 15 Feb 2025 23:31:02 +0100 Subject: [PATCH] Add user32.lib for clipboard functions and shell32.lib for file dragging functions --- Working-on-Windows.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Working-on-Windows.md b/Working-on-Windows.md index bf789e6..dbf0ae7 100644 --- a/Working-on-Windows.md +++ b/Working-on-Windows.md @@ -133,7 +133,7 @@ This will output `a.exe` to the current directory, where you can run it with `./ ### Build ONE example using msvc/cl - cl gdi32.lib msvcrt.lib raylib.lib winmm.lib filename.c -Ic:\path\to\raylib\include /link /libpath:c:\path\to\raylib\lib /NODEFAULTLIB:libcmt + cl gdi32.lib msvcrt.lib raylib.lib winmm.lib user32.lib shell32.lib filename.c -Ic:\path\to\raylib\include /link /libpath:c:\path\to\raylib\lib /NODEFAULTLIB:libcmt ## Install additional libraries in w64devkit