Hello, I hope this is the correct way of asking a question.
I have a C# project which generates multiple DLLs which are bound by the main project, like:
|- sub1
|--- source
|----- ...
|--- sub1.dll
|- sub2
|--- source
|----- ...
|--- sub2.dll
|- main
|--- source
|----- ...
|--- main.exe (uses sub1.dll and sub2.dll)
Is it possible to generate callgraphs which are not limited by the project? For example "main" calls a function of sub1. My callgraphs end as soon as they leave the project where they start but Id like to have them go through all the sources and have it like
main.main() -> main.func() -> sub1.func() -> sub1.func2() -> sub2.func() -> ...
Is this possible with the current state of Doxygen?
Thank you for your time
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello, I hope this is the correct way of asking a question.
I have a C# project which generates multiple DLLs which are bound by the main project, like:
|- sub1
|--- source
|----- ...
|--- sub1.dll
|- sub2
|--- source
|----- ...
|--- sub2.dll
|- main
|--- source
|----- ...
|--- main.exe (uses sub1.dll and sub2.dll)
Is it possible to generate callgraphs which are not limited by the project? For example "main" calls a function of sub1. My callgraphs end as soon as they leave the project where they start but Id like to have them go through all the sources and have it like
main.main() -> main.func() -> sub1.func() -> sub1.func2() -> sub2.func() -> ...
Is this possible with the current state of Doxygen?
Thank you for your time