Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: "opengl32" module missing after building SFML using cmake  (Read 2193 times)

0 Members and 1 Guest are viewing this topic.

ab1093996300

  • Newbie
  • *
  • Posts: 2
    • View Profile
    • Email
"opengl32" module missing after building SFML using cmake
« on: December 05, 2015, 06:57:21 am »
I am using mingw32 gcc 4.8.1 as my compiler, and SFML does not provide a binary corresponding to it. So I followed the instruction and built SFML with cmake and mingw32-make.exe. However I realized one thing: different from the SFML library provided by the download page, there is no opengl module inside my lib folder anymore. Is it supposed to be like this? If not, how can I fix it? Thank you! (I'm still new to programming, so if I named anything wrong please forgive!)

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10819
    • View Profile
    • development blog
    • Email
Re: "opengl32" module missing after building SFML using cmake
« Reply #1 on: December 05, 2015, 11:55:00 am »
There has never been an "opengl module". If you say that because when you link statically you have to add opengl32 to the linker, then you should know that OpenGL is provided by your GPU driver.
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

ab1093996300

  • Newbie
  • *
  • Posts: 2
    • View Profile
    • Email
Re: "opengl32" module missing after building SFML using cmake
« Reply #2 on: December 05, 2015, 07:46:38 pm »
Got it. Thanks!  :)