简体   繁体   中英

WxWidgets Compile Help

I tried to compile WxWidgets (Latest; VC9; Release), but it outputted only *.obj and *.pch files, no *.lib files. I know *.obj files are Object Files and *.pch files are Pre-Compiled Headers, but do I reference them from C++ or do I somehow have to convert them into *.lib files.

Btw, I've never used *.pch and am not at all familiar with them. I've only been using C++ for a few months now...

As a static library, a .lib is just a collection of .obj files. You can get that by selecting "Static Library" as the project type in Visual Studio.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM