user14307130
user14307130

Reputation:

Raylib Makefile Issue

I've install raylib according to this wiki page.

My Project Folder is look like this: [this][1]

> ..\build>mingw32-make

g++ ../main.cpp -o test.exe -O2 -Wall -Wno-missing-braces -I ../include/ -L ../lib/ -lraylib -lopeng132 -lgdi32 -lwinmm
D:/Software/raylib/mingw/bin/../lib/gcc/i686-w64-mingw32/8.1.0/../../../../i686-w64-mingw32/bin/ld.exe: cannot find -lopeng132
collect2.exe: error: ld returned 1 exit status
mingw32-make: *** [Makefile:2: default] Error 1```


  [1]: https://i.sstatic.net/QK2X3.png

Upvotes: 0

Views: 652

Answers (1)

lockks
lockks

Reputation: 65

It seems you have typed openg132 instead of opengl132. You have mistaken the letter l for the number 1

Upvotes: 2

Related Questions