-
Notifications
You must be signed in to change notification settings - Fork 174
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
Having Project Dependencies visible on Visual Studio? #284
Comments
Hello Soufiane, You must be doing something wrong in your configuration because it should be working. Here is a screenshot of a msbuild based project I have that is managed by Sharpmake. Are you passing special parameters to your AddPublicDependencies ? Could you paste some code here showing the way you are adding your dependencies? These are C++ projects, right ? Thanks |
It might not be your case, but I encountered a similar case a few years ago and was also surprise at first. If your project output a static library, it does not need the results of its static dependencies to compile itself. I believe Sharpmake omit the project dependency in this case to improve compilation time. It enable the MSBuild engine to compile your projects in parallel. |
Hi JS, For info, I'm using "sharpmake 0.20.0".
All projects are C++, |
Hello, In the screenshot I posted, sandbox is an exe and the 3 checked projects are static libs. I suggest you upgrade to latest version, maybe we fixed a bug a while ago. |
Do we have a way to have Project Dependencies visible on Visual Studio, I tried AddPublicDependency and AddPrivateDependency:
The text was updated successfully, but these errors were encountered: