使用Visual Studio,我编写了一个C ++程序MyCat
,因此可以在VS IDE中编译生成MyCat.DLL文件。
另外,我可以在命令行中构建它,使用解决方案文件MyCat.sln
:
set VCTargetsPath=C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V120\
set VisualStudioVersion = 12.0
path=C:\Windows\Microsoft.NET\Framework\v4.0.30319\;%path%
msbuild.exe MyCat.sln /p:Configuration=Debug /clp:Summary /nologo /fileLoggerParameters:LogFile=MyCat.Debug.log;Verbosity=normal;Encoding=UTF-8
但是,如何在不使用解决方案文件(.sln)或vc项目文件(MyCat.vcxproj
)的情况下执行此操作?
我知道cl.exe
下的编译器C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin
可以编译.h
和.cpp
个文件。
但是链接器在哪里以及如何生成目标.DLL
或.EXE
文件?
答案 0 :(得分:1)
我无法添加评论,因此我会将其添加为答案。
如果您搜索过此网站,您会发现: How to build a DLL from the command line in Windows using MSVC
哪种方法很好。
编辑:看看Ebow Halm的答案,然后向上投票:)