I am working on multiple projects in a workspace, i am having project A and project B,i am able to build and run both projects separately,now i want to run project A and from there while executing it should call project B and execute it, how to do it?
Share
Can you clarify “it should call project B” because that could mean a lot of things. If you mean there is a common functionality shared by Project A and Project B then this thread might answer your question.
Basically you should either:
1) Create a common folder and reference the files in this folder from project A and B (easier)
or
2) Create a static library referenced by both projects (more complicated)