-
-
Notifications
You must be signed in to change notification settings - Fork 183
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
Further fixes for Qt6 #1713
Further fixes for Qt6 #1713
Changes from 2 commits
bb9f656
50179c7
497d54b
74c5a92
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,4 +19,12 @@ avogadro_plugin(BondCentric | |
"${bondcentrictool_rcs}" | ||
) | ||
|
||
target_link_libraries(BondCentric PRIVATE Avogadro::QtOpenGL) | ||
target_link_libraries(BondCentric | ||
PRIVATE | ||
Avogadro::Rendering | ||
Avogadro::QtOpenGL) | ||
|
||
target_include_directories(BondCentric | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There's got to be a better way to do this with I'd guess that's a better thing to modify so this isn't needed in a bunch of plugin CMakeLists.txt There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, I think all those things aren't needed now that I've fixed the issue with That was a fix I did 6+ months ago so the exact errors these fixes were solving are a little lost to the depths of my memory. Hence also them being all in a single commit, which I know isn't very helpful – it's cause I had to do a messy manual rebase on top of all the changes to master that had happened in the meantime There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removed all the |
||
PRIVATE | ||
${CMAKE_CURRENT_BINARY_DIR}/../../rendering | ||
${CMAKE_CURRENT_BINARY_DIR}/../../qtopengl) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's weird - it shouldn't be necessary, but 🤷