本文介绍了在 Visual C++ Express 2010 中创建静态库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在 Visual C++ Express 2010 中创建静态库?创建项目时,我找不到静态库选项.谢谢.
how to create static library in Visual C++ Express 2010? When creating project, I cant find static library option. Thanks.
推荐答案
您可以新建一个:
新建项目->Win32 控制台应用程序 ->静态库
(生成的项目将为空)
New project -> Win32 Console Application -> Static Library
(the generated project will be empty)
或者将现有的 C++ 项目配置为静态库:
Or configure an existing C++ project to become a static library:
项目属性页 ->配置属性 ->一般 ->配置类型
,选择'静态库'
Project property Pages -> Configuration Properties -> General -> Configuration Type
, select 'Static library'
这篇关于在 Visual C++ Express 2010 中创建静态库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!