Test ways to link libraries, either by adding them as commandline arguments or by using a `-l` option The `-l` option can be easily implemented using: ``` #pragma comment(lib, "OtherLib700.lib") ``` internally added on top of the source to be executed.
Test ways to link libraries, either by adding them as commandline arguments or by using a
-loptionThe
-loption can be easily implemented using:internally added on top of the source to be executed.