Home > OS >  Cmake build error on Fedora 37 ; cannot find UDev library
Cmake build error on Fedora 37 ; cannot find UDev library

Time:12-05

I was trying to make some games in SFML, download the source code on github but i have some dependencies issues while trying to build the code.

enter image description here

I'm working on Fedora 37. Anyone know how to solve it ?

The library exit on /usr/lib/udev so i guess it's a path issues but i already try to export it on the $PATH but didn't work either.

CodePudding user response:

There is no reason to build SFML on Fedora since it is in the repos. Just do

dnf install SFML SFML-devel
  • Related