From f3830d9f0d7175f21aea07d4c1267127b64e2fcd Mon Sep 17 00:00:00 2001 From: trayres Date: Sat, 27 Jun 2020 15:00:02 -0700 Subject: [PATCH] Updated Use raylib with Eclipse (markdown) --- Use-raylib-with-Eclipse.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Use-raylib-with-Eclipse.md b/Use-raylib-with-Eclipse.md index 75a624f..f43cca3 100644 --- a/Use-raylib-with-Eclipse.md +++ b/Use-raylib-with-Eclipse.md @@ -44,8 +44,8 @@ https://www.raylib.com/examples.html * From the main menu choose **Project > Properties**. * Now go to **C/C++ Build > Settings > Tool Settings** tab. * Under **GCC C++ Compiler > Includes > Include paths (-I)** add the path to your **raylib/src** folder. -* Under **MinGW C++ Linker > Libraries > Libraries (-l)** add **raylib** and **gdi32** libs. -* Under **MinGW C++ Linker > Libraries > Library search path (-L)** add the path to the **raylib** static library which you previously builded. +* Under **MinGW C++ Linker > Libraries > Libraries (-l)** add **raylib**, **opengl32**, **gdi32**, and **winmm** libs. +* Under **MinGW C++ Linker > Libraries > Library search path (-L)** add the path to the **raylib** static library which you previously built. ### Build and Run!