I have a solution in VisualStudio 2022 with two C/C++projects: a main an a static library. Build order and al works properly but I can't find how to tell the main project where to automatically grab the library's project result (the .lib).
Of course I can manually enter the path in main's linker's options, but wouldn't that make sense to also be able to automatically grab the .lib from where it has been build ? VS figures out debug/release and win32/x64 path from what I've build in main?
I'm aware I can use $(Configuration) and $(Platform) to at least automate finding the right library, but I till need to enter the path in /linker/general/additional library directory