Where do you store your thirdparty libraries and header files to when developing C/C++ on Windows?
When developing on Linux the package managers usally installs thirdparty libraries to /usr/lib
and /usr/include
. So I know where to look for.
I am just starting to develop on Windows and made the mistake to install libraries to C:\Program Files
which is a bad idea due to UAC and permission lookdown on Windows 10.
Is there some kind of best practice? Thanks in advance