We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi all,
Just wanted to pop this in here for anyone struggling like I did, or for anyone interested in addressing it.
vcpkg install magnum[*]
This throws an error saying..
X11 library, required by some applications, was not found. Set WITH_*X*APPLICATION to OFF to skip building them.
Which I understood as being code for:
$env:WITH_XEGLAPPLICATION="Off"
However this didn't work for me. Instead, I converted the * to a full list of packages, minus the ones that seemed to depend on X11.
*
magnum[ al-info anyaudioimporter anyimageconverter anyimageimporter anysceneimporter audio cglcontext core debugtools distancefieldconverter // eglcontext fontconverter gl gl-info glfwapplication glxcontext imageconverter magnumfont magnumfontconverter meshtools objimporter opengltester primitives scenegraph sdl2application shaders text texturetools tgaimageconverter tgaimporter trade wavaudioimporter wglcontext // windowlesseglapplication // windowlessglxapplication windowlesswglapplication ]:x64-windows
Resulting in this final command.
vcpkg install magnum[al-info,anyimageconverter,anyimageimporter,anysceneimporter,cglcontext,core,debugtools,distancefieldconverter,fontconverter,gl,gl-info,glfwapplication,glxcontext,imageconverter,magnumfont,magnumfontconverter,meshtools,objimporter,opengltester,primitives,scenegraph,sdl2application,shaders,text,texturetools,tgaimageconverter,tgaimporter,trade,wglcontext,windowlesswglapplication]:x64-windows
Which worked!
The text was updated successfully, but these errors were encountered:
Hi, sorry for not replying soon enough and pointing out #368. I hope we can fix that soon.
Let's direct further discussion there to avoid having the conversation on two places :)
Sorry, something went wrong.
No branches or pull requests
Hi all,
Just wanted to pop this in here for anyone struggling like I did, or for anyone interested in addressing it.
vcpkg install magnum[*]
This throws an error saying..
Which I understood as being code for:
However this didn't work for me. Instead, I converted the
*
to a full list of packages, minus the ones that seemed to depend on X11.Resulting in this final command.
Which worked!
The text was updated successfully, but these errors were encountered: