Jesse C
2010-01-18 01:12:08 UTC
Looking to find the "correct" way to handle library dependencies in VC+
+.
I have multiple apps which all use a library which provides some
common functionality called MyLib. MyLib utilizes a third party
library, Lua51.
I can link Lua51.lib into MyLib, not having to link it in to every
subsequent project, or I could just not link it in MyLib and link it
into the other projects. On the one hand, linking it into MyLib would
allow for less headache for all apps dependent on MyLib. Also, linker
switches can slim down what gets linked in from MyLib, right?
(function level linking)
Am I on the right/wrong track with my thinking?
Thanks in advance,
Jesse
+.
I have multiple apps which all use a library which provides some
common functionality called MyLib. MyLib utilizes a third party
library, Lua51.
I can link Lua51.lib into MyLib, not having to link it in to every
subsequent project, or I could just not link it in MyLib and link it
into the other projects. On the one hand, linking it into MyLib would
allow for less headache for all apps dependent on MyLib. Also, linker
switches can slim down what gets linked in from MyLib, right?
(function level linking)
Am I on the right/wrong track with my thinking?
Thanks in advance,
Jesse