|
|
|
|
|
by jbandela1
1251 days ago
|
|
One of the nice things that Visual C++ has is #pragma comment(lib, "xxx.lib")
You can specify it in a header file for the library. That way if you include the header file, the library mentioned will automatically get linked as long as it is somewhere in the library search path.I have found myself wishing that GCC would also get something like this. |
|