-
-
Notifications
You must be signed in to change notification settings - Fork 18
Add missing find_dependency calls.
#203
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
Changes from all commits
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 | ||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -6,6 +6,17 @@ if (@OMATH_IMGUI_INTEGRATION@) | |||||||||||||||
| find_dependency(imgui CONFIG) | ||||||||||||||||
| endif() | ||||||||||||||||
|
|
||||||||||||||||
| if (@OMATH_ENABLE_LUA@) | ||||||||||||||||
| find_dependency(Lua) | ||||||||||||||||
| endif() | ||||||||||||||||
|
|
||||||||||||||||
| if (@OMATH_ENABLE_HOOKING@) | ||||||||||||||||
| find_dependency(safetyhook CONFIG) | ||||||||||||||||
|
Contributor
Author
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. Matching Lines 128 to 134 in d4c86da
|
||||||||||||||||
| if (NOT WIN32 AND (UNIX AND NOT APPLE)) | ||||||||||||||||
| find_dependency(OpenGL) | ||||||||||||||||
| endif() | ||||||||||||||||
| endif() | ||||||||||||||||
|
Comment on lines
+9
to
+18
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. Since We should wrap these
Contributor
Author
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. I think there can be header dependencies and similar still present even if |
||||||||||||||||
|
|
||||||||||||||||
| # Load the targets for the omath library | ||||||||||||||||
| include("${CMAKE_CURRENT_LIST_DIR}/omathTargets.cmake") | ||||||||||||||||
| check_required_components(omath) | ||||||||||||||||
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.
Matching
omath/CMakeLists.txt
Line 117 in d4c86da