Tools, FAQ, Tutorials:
"MyExecRefsLib.cpp" - Reference Static Library
How to create and build a C++ application that reference a static library? I have the .h and .lib files of the library.
✍: FYIcenter.com
If you want to use a static library provided by others,
you can follow this tutorial:
1. Create the C++ source file, MyExecRefsLib.cpp, with a text editor. Remember to include the MathFuncsLib.h file in the source code:
// MyExecRefsLib.cpp // compile with: cl /EHsc MyExecRefsLib.cpp /link MathFuncsLib.lib #include <iostream> #include "MathFuncsLib.h" using namespace std; int main() { double a = 7.4; int b = 99; cout << "a + b = " << MathFuncs::MyMathFuncs::Add(a, b) << endl; cout << "a - b = " << MathFuncs::MyMathFuncs::Subtract(a, b) << endl; cout << "a * b = " << MathFuncs::MyMathFuncs::Multiply(a, b) << endl; cout << "a / b = " << MathFuncs::MyMathFuncs::Divide(a, b) << endl; return 0; }
2. Compile MyExecRefsLib.cpp into MyExecRefsLib.obj with Visual Studio command "cl" with MathFuncsLib.h in the include path:
C:\fyicenter>cl /c /EHsc MyExecRefsLib.cpp Microsoft (R) C/C++ Optimizing Compiler Version 19.10.25019 for x86 Copyright (C) Microsoft Corporation. All rights reserved. MyExecRefsLib.cpp C:\fyicenter>dir MyExecRefsLib.* 09:23 AM 568 MyExecRefsLib.cpp 09:26 AM 146,650 MyExecRefsLib.obj
3. Build MyExecRefsLib.obj into MyExecRefsLib.exe with Visual Studio command "link" with MathFuncsLib.lib specified:
C:\fyicenter>link MyExecRefsLib.obj MathFuncsLib.lib Microsoft (R) Incremental Linker Version 14.10.25019.0 Copyright (C) Microsoft Corporation. All rights reserved. C:\fyicenter>dir MyExecRefsLib.* 09:23 AM 568 MyExecRefsLib.cpp 09:30 AM 220,160 MyExecRefsLib.exe 09:26 AM 146,650 MyExecRefsLib.obj
4. Run MyExecRefsLib.exe without any other files:
C:\fyicenter>MyExecRefsLib.exe a + b = 106.4 a - b = -91.6 a * b = 732.6 a / b = 0.0747475
You can also compile and build MyExecRefsLib.cpp into MyExecRefsLib.exe with Visual Studio command "cl" directly with MathFuncsLib.lib specified. No need to run "link".
C:\fyicenter>cl /EHsc MyExecRefsLib.cpp /link MathFuncsLib.lib Microsoft (R) C/C++ Optimizing Compiler Version 19.10.25019 for x86 Copyright (C) Microsoft Corporation. All rights reserved. MyExecRefsLib.cpp Microsoft (R) Incremental Linker Version 14.10.25019.0 Copyright (C) Microsoft Corporation. All rights reserved. /out:MyExecRefsLib.exe MathFuncsLib.lib MyExecRefsLib.obj C:\fyicenter>dir MyExecRefsLib.* 09:23 AM 568 MyExecRefsLib.cpp 09:35 AM 220,160 MyExecRefsLib.exe 09:35 AM 146,650 MyExecRefsLib.obj
Â
⇒Visual C++ Examples Provided by Microsoft
⇒⇒Visual Studio Tutorials
2017-08-07, 980👍, 0💬
Popular Posts:
How To Remove Slashes on Submitted Input Values in PHP? By default, when input values are submitted ...
Where to get the detailed description of the json_encode() Function in PHP? Here is the detailed des...
Where to see resource detailed information of my API Management Service on Azure Portal? Once you ha...
How to read RSS validation errors at w3.org? If your RSS feed has errors, the RSS validator at w3.or...
What Is Azure API Management Service? Azure API Management as a turnkey solution for publishing APIs...