-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CMake variable GLFW_LIBRARY not set #37
Comments
Similar problem on arch linux, cmake couldn't find glfwConfig.cmake. I set the path to glfwConfig.cmake manually in ccmake:
For some reason a relative path didn't work. Then it was able to find glfw3 fine. |
For me on OS X, I was able to deal with glfw by installing with brew and adding this to
Seemingly the same end result. |
@stephen304 I noticed you mentioned libsquish, which I found quite difficult to acquire the dylib for this as the original source was made to build so files. If anyone needs a working libsquish.dylib, here's this fresh built one that finally allowed me to build NoLifeWzToNx! |
src/client/CMake/Modules/glfwConfig.cmake kinda needs it. Bypassed by just throwing it in as a variable from command line.
cmake . -DGLFW_LIBRARY=/usr/local/lib/libglfw3.3.1.dylib
or whatever version brew installed.
Yay OS X.
The text was updated successfully, but these errors were encountered: