静态连接库的问题
刚刚接触静态连接库的问题,按照网上的教程做的,先生成mymath.obj文件,然后将mymath.h和mymath.obj文件复制到test程序目录下,将mymath.lib加入到工程中。并在testdlg.cpp文件头部,加入头文件mymath.h:但编译提示错误:
--------------------Configuration: test - Win32 Debug--------------------
Linking...
testDlg.obj : error LNK2001: unresolved external symbol _Factorial
testDlg.obj : error LNK2001: unresolved external symbol _Summary
Debug/test.exe : fatal error LNK1120: 2 unresolved externals
执行 link.exe 时出错.
test.exe - 1 error(s), 0 warning(s)
请问如何解决