-
Notifications
You must be signed in to change notification settings - Fork 129
Fix EGL GLX simultanous configuration #569
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
Conversation
|
@VolkerEnderlein, I think we can merge this PR and #550. A new Coin release not too long after merging would be nice. |
Seems like this is still failing for Windows, you probably need to guard it conditionally with CMake checks. |
|
The failing test for Windows is caused by changes in handling Boost by CMake. I tried to fix this but did not commit it. Am 13.06.2025 19:59 schrieb João Matos ***@***.***>:tritao left a comment (coin3d/coin#569)
@VolkerEnderlein, I think we can merge this PR and #550. A new Coin release not too long after merging would be nice.
Seems like this is still failing for Windows, you probably need to guard it conditionally with CMake checks.
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you were mentioned.Message ID: ***@***.***>
|
|
All platforms have been built successful but 32bit failed for some obscure reasons on MSYS2. The issue is on the CI side not in your code. |
Makes sure
HAVE_GLXis set whenCOIN_BUILD_GLXandCOIN_BUILD_EGLare set. Also setCOIN_BUILD_EGLto on by default. This should be safe because EGL is not used whenCOIN_BUILD_GLXis also set so by default it will not be used but it will be built.Should probably also check for
COIN_USE_EGLeverywhereHAVE_EGLis used. -> done