-
Notifications
You must be signed in to change notification settings - Fork 18
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
Cannot get CMake graph for custom target #63
Comments
Glad that you're getting some use out of the project!
See here for the command line build instructions: https://github.com/mbed-ce/mbed-os/wiki/Project-Setup:-Command-Line However, I will say that I don't have terribly polished support for custom targets at this point (see #48). I can try to set up some docs for you to use in the next week or two though. |
And regarding your original question, yes indeed I have almost completely gotten rid of interface targets in Mbed CE. The core mbed code is compiled into a single library (well, two possible versions, mbed-baremetal and mbed-os). And optional libraries are handled as STATIC libraries, not INTERFACE or OBJECT. This means that no code should ever get compiled more than once! |
Thank you for your response. I guess it was my cmake configuration causing the issue. I tried it with a blank project and it works.
That's really awesome. I would like to explore a little more |
Hi @multiplemonomials,
Note Editing the original issue as I didn't know it was already fixed 😅
First of all thank you for creating this project. A lot of work that I do depends on mbed-os and their sudden disappearance got a lot of us anxious. Hopefully, this project keeps it alive and even makes it better than the original! 🏆
I want to get the graph of dependency that cmake generates using the following command:
But I get the following error for my custom target...
Thanks and cheers. 🍻
The text was updated successfully, but these errors were encountered: