-
Notifications
You must be signed in to change notification settings - Fork 7
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
fix: remove non-ros dependency #6
base: rolling
Are you sure you want to change the base?
Conversation
What about adding include(FetchContent)
if (NOT TARGET qualisys_cpp_sdk)
message(STATUS "${PROJECT_NAME}: `qualisys_cpp_sdk` targets not found. Attempting to fetch contents...")
FetchContent_Declare(
qualisys_cpp_sdk
GIT_REPOSITORY https://github.com/qualisys/qualisys_cpp_sdk
GIT_TAG master
)
FetchContent_MakeAvailable(qualisys_cpp_sdk)
else()
message(STATUS "qualisys_cpp_sdk: `qualisys_cpp_sdk` targets found.")
endif() to the cmakelists.txt ? |
This works like that. Commit messages got a little messy though. If you find this approach good enough, I can clean up the commit messages and make another PR, or somehow update this one. |
LGTM, go ahead. Is the PR ready to merge? Thanks!! |
Nööö!!! 😆 There are too many weird commits in it. I will properly do it and create another pull request. I will turn this into a draft for now. |
Did you progress with this? |
Hi @incebellipipo, |
Solves #5
It is not ready for merge yet; we can discuss the ways to handle SDK dependency before it.