Create static library in Visual C++ Express 2010
how to create static library in 开发者_开发知识库Visual C++ Express 2010? When creating project, I cant find static library option. Thanks.
You can create a new one:
New project -> Win32 Console Application -> Static Library
(the generated project will be empty)
Or configure an existing C++ project to become a static library:
Project property Pages -> Configuration Properties -> General -> Configuration Type
, select 'Static library'
精彩评论