Open jaromil opened 2 months ago
Test ways to link libraries, either by adding them as commandline arguments or by using a -l option
-l
The -l option can be easily implemented using:
#pragma comment(lib, "OtherLib700.lib")
internally added on top of the source to be executed.
This now works adding library files directly as arguments together with sources.
For compatibility with GCC notation, we still need to have a working -L and -l implementation.
-L
Test ways to link libraries, either by adding them as commandline arguments or by using a
-l
optionThe
-l
option can be easily implemented using:internally added on top of the source to be executed.