VS2012环境下编译wxWidgets

时间:2022-09-09 00:29:29

1、下载wxMSW-2.9.4-Setup.exe

2、进入安装后的目录,如:C:\wxWidgets-2.9.4\build\msw

3、使用vs2010或者vs2012打开wx_vc9.sln,其会自动转换工程为适当的vs版本

4、vs中选择左侧目录树中的编译选项,如下图所示

VS2012环境下编译wxWidgets

注意:这里选择“生成解决方案”,千万不要选择“重新生成解决方案”,选择后者无法编译通过

5、等待工程编译完成即可

6、编译完成的日志如下所示

1>------ 已启动生成: 项目: wxscintilla, 配置: Debug Win32 ------
2>------ 已启动生成: 项目: wxregex, 配置: Debug Win32 ------
3>------ 已启动生成: 项目: wxzlib, 配置: Debug Win32 ------
4>------ 已启动生成: 项目: wxpng, 配置: Debug Win32 ------
1>生成启动时间为 2013/3/11 22:36:52
1>InitializeBuildStatus:
1> 正在创建“vc_mswud\wxscintilla\wxscintilla.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
1>ComputeCustomBuildOutput:
1> 正在创建目录“C:\wxWidgets-2.9.4\lib\vc_lib\mswud\wx\msw\”。
1>CustomBuild:
1> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
1> genrcdefs.h
1> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
2>生成启动时间为 2013/3/11 22:36:52
1> 已复制 1 个文件。
2>InitializeBuildStatus:
2> 正在创建“vc_mswud\wxregex\wxregex.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
4>生成启动时间为 2013/3/11 22:36:52
4>InitializeBuildStatus:
1>ClCompile:
1> AutoComplete.cxx
1> CallTip.cxx
1> CellBuffer.cxx
1> CharClassify.cxx
4> 正在创建“vc_mswud\wxpng\wxpng.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
2>CustomBuild:
2> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
2> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
2> 已复制 1 个文件。
2> genrcdefs.h
2>ClCompile:
2> regcomp.c
2> regerror.c
3>生成启动时间为 2013/3/11 22:36:52
2> regexec.c
2> regfree.c
4>ClCompile:
4> png.c
4> pngerror.c
4> pngget.c
4> pngmem.c
3>InitializeBuildStatus:
3> 正在创建“vc_mswud\wxzlib\wxzlib.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
3>ClCompile:
3> adler32.c
3> compress.c
3> crc32.c
3> deflate.c
3> gzio.c
3> infback.c
3> inffast.c
3> inflate.c
3> inftrees.c
1> ContractionState.cxx
3> trees.c
3> uncompr.c
3> zutil.c
1> Decoration.cxx
2>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\wxregex.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxregexud.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
2>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(wxregex) does not match the Library's OutputFile property value (wxregexud). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
3>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\wxzlib.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxzlibd.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
3>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(wxzlib) does not match the Library's OutputFile property value (wxzlibd). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
3>Lib:
3> wx_vc9_wxzlib.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\wxzlib.lib
3>FinalizeBuildStatus:
3> 正在删除文件“vc_mswud\wxzlib\wxzlib.unsuccessfulbuild”。
3> 正在对“vc_mswud\wxzlib\wxzlib.lastbuildstate”执行 Touch 任务。
3>
3>生成成功。
3>
3>已用时间 00:00:01.34
2>Lib:
2> wx_vc9_wxregex.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\wxregex.lib
2>FinalizeBuildStatus:
2> 正在删除文件“vc_mswud\wxregex\wxregex.unsuccessfulbuild”。
2> 正在对“vc_mswud\wxregex\wxregex.lastbuildstate”执行 Touch 任务。
2>
2>生成成功。
2>
2>已用时间 00:00:01.96
5>------ 已启动生成: 项目: wxjpeg, 配置: Debug Win32 ------
5>生成启动时间为 2013/3/11 22:36:54
5>InitializeBuildStatus:
5> 正在创建“vc_mswud\wxjpeg\wxjpeg.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
6>------ 已启动生成: 项目: wxtiff, 配置: Debug Win32 ------
1> Document.cxx
6>生成启动时间为 2013/3/11 22:36:54
1> DocumentAccessor.cxx
6>InitializeBuildStatus:
6> 正在创建“vc_mswud\wxtiff\wxtiff.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
1> Editor.cxx
4> pngpread.c
4> pngread.c
1> ExternalLexer.cxx
4> pngrio.c
4> pngrtran.c
5>ClCompile:
5> jcapimin.c
5> jcapistd.c
5> jccoefct.c
5> jccolor.c
6>ClCompile:
6> tif_aux.c
6> tif_close.c
6> tif_codec.c
6> tif_color.c
6> tif_compress.c
5> jcdctmgr.c
6> tif_dir.c
6> tif_dirinfo.c
6> tif_dirread.c
5> jchuff.c
5> jcinit.c
6> tif_dirwrite.c
6> tif_dumpmode.c
5> jcmainct.c
5> jcmarker.c
4> pngrutil.c
5> jcmaster.c
6> tif_error.c
1> Indicator.cxx
6> tif_extension.c
5> jcomapi.c
6> tif_fax3.c
6> tif_fax3sm.c
6> tif_flush.c
4> pngset.c
6> tif_getimage.c
5> jcparam.c
5> jcphuff.c
6> tif_jpeg.c
5> jcprepct.c
1> KeyMap.cxx
5> jcsample.c
5> jctrans.c
6> tif_luv.c
4> pngtrans.c
6> tif_lzw.c
5> jdapimin.c
4> pngwio.c
6> tif_next.c
5> jdapistd.c
6> tif_ojpeg.c
6> tif_open.c
6> tif_packbits.c
5> jdatadst.c
5> jdatasrc.c
1> KeyWords.cxx
6> tif_pixarlog.c
5> jdcoefct.c
6> tif_predict.c
5> jdcolor.c
6> tif_print.c
5> jddctmgr.c
6> tif_read.c
5> jdhuff.c
5> jdinput.c
6> tif_strip.c
4> pngwrite.c
1> LexAPDL.cxx
5> jdmainct.c
6> tif_swab.c
4> pngwtran.c
4> pngwutil.c
6> tif_thunder.c
6> tif_tile.c
5> jdmarker.c
5> jdmaster.c
6> tif_version.c
5> jdmerge.c
6> tif_warning.c
6> tif_win32.c
6> tif_write.c
1> LexASY.cxx
6> tif_zip.c
5> jdphuff.c
5> jdpostct.c
5> jdsample.c
1> LexAU3.cxx
5> jdtrans.c
5> jerror.c
5> jfdctflt.c
1> LexAVE.cxx
5> jfdctfst.c
5> jfdctint.c
5> jidctflt.c
5> jidctfst.c
5> jidctint.c
5> jidctred.c
5> jmemmgr.c
1> LexAbaqus.cxx
5> jmemnobs.c
5> jquant1.c
1> LexAda.cxx
5> jquant2.c
5> jutils.c
6>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\wxtiff.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxtiffd.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
6>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(wxtiff) does not match the Library's OutputFile property value (wxtiffd). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
1> LexAsm.cxx
4>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\wxpng.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxpngd.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
4>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(wxpng) does not match the Library's OutputFile property value (wxpngd). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
6>Lib:
6> wx_vc9_wxtiff.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\wxtiff.lib
6>FinalizeBuildStatus:
6> 正在删除文件“vc_mswud\wxtiff\wxtiff.unsuccessfulbuild”。
1> LexAsn1.cxx
6> 正在对“vc_mswud\wxtiff\wxtiff.lastbuildstate”执行 Touch 任务。
6>
6>生成成功。
6>
6>已用时间 00:00:04.10
4>Lib:
4> wx_vc9_wxpng.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\wxpng.lib
4>FinalizeBuildStatus:
4> 正在删除文件“vc_mswud\wxpng\wxpng.unsuccessfulbuild”。
4> 正在对“vc_mswud\wxpng\wxpng.lastbuildstate”执行 Touch 任务。
4>
4>生成成功。
4>
4>已用时间 00:00:06.12
7>------ 已启动生成: 项目: wxexpat, 配置: Debug Win32 ------
5>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\wxjpeg.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxjpegd.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
5>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(wxjpeg) does not match the Library's OutputFile property value (wxjpegd). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
7>生成启动时间为 2013/3/11 22:36:58
7>InitializeBuildStatus:
7> 正在创建“vc_mswud\wxexpat\wxexpat.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
1> LexBaan.cxx
7>ClCompile:
7> xmlparse.c
7> xmlrole.c
7> xmltok.c
8>------ 已启动生成: 项目: base, 配置: Debug Win32 ------
5>Lib:
5> wx_vc9_wxjpeg.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\wxjpeg.lib
8>生成启动时间为 2013/3/11 22:36:59
8>InitializeBuildStatus:
8> 正在创建“vc_mswud\base\base.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
8>CustomBuild:
8> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
8> 已复制 1 个文件。
8> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
8> genrcdefs.h
5>FinalizeBuildStatus:
5> 正在删除文件“vc_mswud\wxjpeg\wxjpeg.unsuccessfulbuild”。
5> 正在对“vc_mswud\wxjpeg\wxjpeg.lastbuildstate”执行 Touch 任务。
5>
5>生成成功。
5>
5>已用时间 00:00:05.08
1> LexBash.cxx
8>ClCompile:
8> dummy.cpp
1> LexBasic.cxx
1> LexBullant.cxx
7>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\wxexpat.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxexpatd.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
7>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(wxexpat) does not match the Library's OutputFile property value (wxexpatd). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
1> LexCLW.cxx
7>Lib:
7> wx_vc9_wxexpat.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\wxexpat.lib
7>FinalizeBuildStatus:
7> 正在删除文件“vc_mswud\wxexpat\wxexpat.unsuccessfulbuild”。
7> 正在对“vc_mswud\wxexpat\wxexpat.lastbuildstate”执行 Touch 任务。
7>
7>生成成功。
7>
7>已用时间 00:00:00.98
1> LexCOBOL.cxx
1> LexCPP.cxx
9>------ 已启动生成: 项目: net, 配置: Debug Win32 ------
10>------ 已启动生成: 项目: core, 配置: Debug Win32 ------
1> LexCSS.cxx
9>生成启动时间为 2013/3/11 22:36:59
10>生成启动时间为 2013/3/11 22:36:59
9>InitializeBuildStatus:
9> 正在创建“vc_mswud\net\net.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
10>InitializeBuildStatus:
10> 正在创建“vc_mswud\core\core.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
1> LexCaml.cxx
9>CustomBuild:
9> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
9> 已复制 1 个文件。
9> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
9> genrcdefs.h
1> LexCmake.cxx
10>CustomBuild:
10> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
10> 已复制 1 个文件。
10> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
10> genrcdefs.h
1> LexConf.cxx
10>ClCompile:
1> LexCrontab.cxx
10> dummy.cpp
1> LexCsound.cxx
9>ClCompile:
9> dummy.cpp
1> LexD.cxx
1> LexEScript.cxx
1> LexEiffel.cxx
1> LexErlang.cxx
1> LexFlagship.cxx
1>..\..\src\stc\scintilla\src\LexErlang.cxx : warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
1> LexForth.cxx
1> LexFortran.cxx
1> LexGAP.cxx
1> LexGui4Cli.cxx
1> LexHTML.cxx
1> LexHaskell.cxx
1> LexInno.cxx
1> LexKix.cxx
1> LexLisp.cxx
1> LexLout.cxx
1> LexLua.cxx
1> LexMMIXAL.cxx
1> LexMPT.cxx
1> LexMSSQL.cxx
1> LexMagik.cxx
1> LexMarkdown.cxx
1> LexMatlab.cxx
1>..\..\src\stc\scintilla\src\LexMatlab.cxx : warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失
1> LexMetapost.cxx
1> LexMySQL.cxx
1> LexNimrod.cxx
1> LexNsis.cxx
1> LexOpal.cxx
1> LexOthers.cxx
1> LexPB.cxx
1> LexPLM.cxx
1> LexPOV.cxx
1> LexPS.cxx
1> LexPascal.cxx
1> LexPerl.cxx
1> LexPowerPro.cxx
1> LexPowerShell.cxx
1> LexProgress.cxx
1> LexPython.cxx
1> LexR.cxx
1> LexRebol.cxx
1> LexRuby.cxx
1> LexSML.cxx
1> LexSQL.cxx
1> LexScriptol.cxx
1> LexSmalltalk.cxx
1> LexSorcus.cxx
1> LexSpecman.cxx
1> LexSpice.cxx
1> LexTACL.cxx
1> LexTADS3.cxx
1> LexTAL.cxx
1> LexTCL.cxx
1> LexTeX.cxx
1> LexVB.cxx
1> LexVHDL.cxx
1> LexVerilog.cxx
1> LexYAML.cxx
1> LineMarker.cxx
1> PerLine.cxx
1> PositionCache.cxx
1> PropSet.cxx
1> RESearch.cxx
1> RunStyles.cxx
1> ScintillaBase.cxx
1> Selection.cxx
1> Style.cxx
1> StyleContext.cxx
1> UniConversion.cxx
1> ViewStyle.cxx
1> WindowAccessor.cxx
1> XPM.cxx
8> any.cpp
8> appbase.cpp
8> arcall.cpp
8> arcfind.cpp
8> archive.cpp
8> arrstr.cpp
8> base64.cpp
8> clntdata.cpp
8> cmdline.cpp
8> config.cpp
8> convauto.cpp
8> datetime.cpp
8> datetimefmt.cpp
8> datstrm.cpp
8> dircmn.cpp
8> dynarray.cpp
8> dynlib.cpp
8> dynload.cpp
8> encconv.cpp
8> event.cpp
8> evtloopcmn.cpp
8> ffile.cpp
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\wxscintilla.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxscintillad.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
1>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(wxscintilla) does not match the Library's OutputFile property value (wxscintillad). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
8> file.cpp
8> fileback.cpp
8> fileconf.cpp
8> filefn.cpp
8> filename.cpp
8> filesys.cpp
1>Lib:
1> wx_vc9_wxscintilla.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\wxscintilla.lib
1>FinalizeBuildStatus:
1> 正在删除文件“vc_mswud\wxscintilla\wxscintilla.unsuccessfulbuild”。
1> 正在对“vc_mswud\wxscintilla\wxscintilla.lastbuildstate”执行 Touch 任务。
1>
1>生成成功。
1>
1>已用时间 00:00:18.68
8> filtall.cpp
9> fs_inet.cpp
9> ftp.cpp
9> http.cpp
9> protocol.cpp
11>------ 已启动生成: 项目: adv, 配置: Debug Win32 ------
8> filtfind.cpp
11>生成启动时间为 2013/3/11 22:37:11
11>InitializeBuildStatus:
11> 正在创建“vc_mswud\adv\adv.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
9> sckaddr.cpp
8> fmapbase.cpp
8> fs_arc.cpp
11>CustomBuild:
11> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
11> 已复制 1 个文件。
11> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
11> genrcdefs.h
8> fs_filter.cpp
9> sckfile.cpp
8> fs_mem.cpp
9> sckipc.cpp
9> sckstrm.cpp
11>ClCompile:
11> dummy.cpp
9> socket.cpp
8> fswatchercmn.cpp
9> url.cpp
9> sockmsw.cpp
9> urlmsw.cpp
8> hash.cpp
8> hashmap.cpp
8> init.cpp
8> intl.cpp
8> ipcbase.cpp
8> languageinfo.cpp
10> accelcmn.cpp
8> list.cpp
10> accesscmn.cpp
8> log.cpp
8> longlong.cpp
8> memory.cpp
10> affinematrix2d.cpp
10> anidecod.cpp
8> mimecmn.cpp
10> appcmn.cpp
10> artprov.cpp
8> module.cpp
10> artstd.cpp
8> msgout.cpp
10> arttango.cpp
10> bmpbase.cpp
8> mstream.cpp
8> numformatter.cpp
10> bmpbtncmn.cpp
8> object.cpp
10> bookctrl.cpp
10> btncmn.cpp
8> platinfo.cpp
8> powercmn.cpp
9>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\net.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxbase29ud_net.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
9>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(net) does not match the Library's OutputFile property value (wxbase29ud_net). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
8> process.cpp
8> regex.cpp
8> sstream.cpp
10> cairo.cpp
9>Lib:
9> wx_vc9_net.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\net.lib
8> stdpbase.cpp
9>FinalizeBuildStatus:
9> 正在删除文件“vc_mswud\net\net.unsuccessfulbuild”。
9> 正在对“vc_mswud\net\net.lastbuildstate”执行 Touch 任务。
9>
9>生成成功。
9>
9>已用时间 00:00:14.22
8> stdstream.cpp
12>------ 已启动生成: 项目: media, 配置: Debug Win32 ------
10> checkboxcmn.cpp
12>生成启动时间为 2013/3/11 22:37:14
10> checklstcmn.cpp
12>InitializeBuildStatus:
12> 正在创建“vc_mswud\media\media.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
8> stopwatch.cpp
12>CustomBuild:
12> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
12> 已复制 1 个文件。
12> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
12> genrcdefs.h
10> choiccmn.cpp
10> clipcmn.cpp
10> clrpickercmn.cpp
10> cmdproc.cpp
10> cmndata.cpp
10> colourcmn.cpp
10> colourdata.cpp
10> combocmn.cpp
10> containr.cpp
10> cshelp.cpp
10> ctrlcmn.cpp
10> ctrlsub.cpp
10> dcbase.cpp
10> dcbufcmn.cpp
10> dcgraph.cpp
10> dcsvg.cpp
10> dirctrlcmn.cpp
10> dlgcmn.cpp
10> dndcmn.cpp
10> dobjcmn.cpp
10> docmdi.cpp
10> docview.cpp
10> dpycmn.cpp
10> dseldlg.cpp
10> effects.cpp
10> event.cpp
10> fddlgcmn.cpp
10> filectrlcmn.cpp
10> filehistorycmn.cpp
10> filepickercmn.cpp
10> fldlgcmn.cpp
10> fontcmn.cpp
10> fontdata.cpp
10> fontenumcmn.cpp
10> fontmap.cpp
10> fontpickercmn.cpp
10> fontutilcmn.cpp
10> framecmn.cpp
10> fs_mem.cpp
10> gaugecmn.cpp
10> gbsizer.cpp
10> gdicmn.cpp
10> geometry.cpp
10> gifdecod.cpp
10> graphcmn.cpp
10> headercolcmn.cpp
10> headerctrlcmn.cpp
10> helpbase.cpp
10> iconbndl.cpp
10> imagall.cpp
10> imagbmp.cpp
10> image.cpp
10> imagfill.cpp
10> imaggif.cpp
10> imagiff.cpp
10> imagjpeg.cpp
10> imagpcx.cpp
10> imagpng.cpp
10> imagpnm.cpp
10> imagtga.cpp
10> imagtiff.cpp
10> imagxpm.cpp
10> layout.cpp
12>ClCompile:
8> strconv.cpp
8> stream.cpp
8> string.cpp
12> dummy.cpp
8> stringimpl.cpp
10> lboxcmn.cpp
8> stringops.cpp
8> strvararg.cpp
8> sysopt.cpp
8> tarstrm.cpp
8> textbuf.cpp
8> textfile.cpp
8> time.cpp
10> listctrlcmn.cpp
8> timercmn.cpp
8> timerimpl.cpp
8> tokenzr.cpp
8> translation.cpp
8> txtstrm.cpp
8> unichar.cpp
8> uri.cpp
8> ustring.cpp
8> utilscmn.cpp
8> variant.cpp
8> wfstream.cpp
8> wxcrt.cpp
8> wxprintf.cpp
8> xlocale.cpp
8> xti.cpp
8> xtistrm.cpp
8> zipstrm.cpp
8> zstream.cpp
8> basemsw.cpp
8> crashrpt.cpp
8> dde.cpp
8> debughlp.cpp
8> dir.cpp
8> dlmsw.cpp
8> evtloop.cpp
8> fswatcher.cpp
8> main.cpp
8> mimetype.cpp
8> mslu.cpp
8> power.cpp
8> regconf.cpp
8>..\..\src\msw\main.cpp(185): warning C4535: 调用 _set_se_translator() 需要 /EHa
8> registry.cpp
8> snglinst.cpp
8> stackwalk.cpp
8> stdpaths.cpp
8> thread.cpp
8> timer.cpp
8> utils.cpp
8>..\..\src\msw\thread.cpp(590): warning C4535: 调用 _set_se_translator() 需要 /EHa
8> utilsexc.cpp
8> volume.cpp
8> fswatcherg.cpp
10> markupparser.cpp
10> matrix.cpp
10> menucmn.cpp
10> mousemanager.cpp
10> msgout.cpp
10> nbkbase.cpp
10> overlaycmn.cpp
10> ownerdrwcmn.cpp
10> panelcmn.cpp
10> paper.cpp
10> persist.cpp
10> pickerbase.cpp
10> popupcmn.cpp
10> prntbase.cpp
10> quantize.cpp
10> radiobtncmn.cpp
10> radiocmn.cpp
10> rearrangectrl.cpp
10> rendcmn.cpp
10> rgncmn.cpp
10> scrolbarcmn.cpp
10> settcmn.cpp
10> sizer.cpp
10> slidercmn.cpp
10> spinbtncmn.cpp
10> spinctrlcmn.cpp
10> srchcmn.cpp
10> statbar.cpp
10> statbmpcmn.cpp
10> statboxcmn.cpp
10> statlinecmn.cpp
10> stattextcmn.cpp
10> stockitem.cpp
10> tbarbase.cpp
10> textcmn.cpp
10> textentrycmn.cpp
10> toplvcmn.cpp
10> treebase.cpp
10> uiactioncmn.cpp
10> utilscmn.cpp
10> valgen.cpp
10> validate.cpp
10> valnum.cpp
10> valtext.cpp
10> wincmn.cpp
10> windowid.cpp
10> wrapsizer.cpp
10> xpmdecod.cpp
10> access.cpp
10> activex.cpp
10> anybutton.cpp
10> app.cpp
10> artmsw.cpp
10> automtn.cpp
10> bitmap.cpp
10> brush.cpp
10> caret.cpp
10> clipbrd.cpp
10> colordlg.cpp
10> colour.cpp
10> combo.cpp
10> cursor.cpp
10> data.cpp
10> dataobj.cpp
10> dc.cpp
10> dcclient.cpp
10> dcmemory.cpp
10> dcprint.cpp
10> dcscreen.cpp
10> dialup.cpp
10> dib.cpp
10> dirdlg.cpp
10> display.cpp
10> dragimag.cpp
10> dropsrc.cpp
10> droptgt.cpp
10> enhmeta.cpp
11> animatecmn.cpp
11> bmpcboxcmn.cpp
11> calctrlcmn.cpp
10> evtloop.cpp
10> filedlg.cpp
11> datavcmn.cpp
10> font.cpp
10> fontdlg.cpp
11> gridcmn.cpp
11> hyperlnkcmn.cpp
10> fontenum.cpp
11> odcombocmn.cpp
10> fontutil.cpp
10> frame.cpp
11> richtooltipcmn.cpp
10> gdiimage.cpp
11> taskbarcmn.cpp
10> gdiobj.cpp
10> gdiplus.cpp
11> aboutdlg.cpp
10> graphics.cpp
11> bmpcbox.cpp
11> calctrl.cpp
10> headerctrl.cpp
10> helpchm.cpp
11> commandlinkbutton.cpp
11> datecontrols.cpp
11> datectrl.cpp
10> helpwin.cpp
11> datetimectrl.cpp
10> icon.cpp
8> extended.c
11> hyperlink.cpp
10> imaglist.cpp
11> joystick.cpp
11> notifmsg.cpp
11> richtooltip.cpp
10> iniconf.cpp
11> sound.cpp
10> main.cpp
11> taskbar.cpp
10> mdi.cpp
11> timectrl.cpp
11> aboutdlgg.cpp
10> menuitem.cpp
11> animateg.cpp
11> bannerwindow.cpp
11> bmpcboxg.cpp
10> metafile.cpp
10> minifram.cpp
11> calctrlg.cpp
10> msgdlg.cpp
10> mslu.cpp
11> commandlinkbuttong.cpp
10> nativdlg.cpp
11> datavgen.cpp
11> datectlg.cpp
10> nativewin.cpp
12> mediactrlcmn.cpp
12> mediactrl_am.cpp
12> mediactrl_qt.cpp
12> mediactrl_wmp10.cpp
11> editlbox.cpp
10> nonownedwnd.cpp
8>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\base.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxbase29ud.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
8>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(base) does not match the Library's OutputFile property value (wxbase29ud). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
11> grid.cpp
10> oleutils.cpp
10> ownerdrw.cpp
10> palette.cpp
8>Lib:
8> wx_vc9_base.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\base.lib
8>FinalizeBuildStatus:
8> 正在删除文件“vc_mswud\base\base.unsuccessfulbuild”。
8> 正在对“vc_mswud\base\base.lastbuildstate”执行 Touch 任务。
8>
8>生成成功。
8>
8>已用时间 00:00:55.61
13>------ 已启动生成: 项目: html, 配置: Debug Win32 ------
12>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\media.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxmsw29ud_media.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
12>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(media) does not match the Library's OutputFile property value (wxmsw29ud_media). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
13>生成启动时间为 2013/3/11 22:37:54
11> gridctrl.cpp
13>InitializeBuildStatus:
13> 正在创建“vc_mswud\html\html.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
10> panel.cpp
13>CustomBuild:
13> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
10> pen.cpp
13> 已复制 1 个文件。
13> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
13> genrcdefs.h
12>Lib:
12> wx_vc9_media.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\media.lib
12>FinalizeBuildStatus:
10> popupwin.cpp
12> 正在删除文件“vc_mswud\media\media.unsuccessfulbuild”。
12> 正在对“vc_mswud\media\media.lastbuildstate”执行 Touch 任务。
12>
12>生成成功。
12>
12>已用时间 00:00:40.69
14>------ 已启动生成: 项目: webview, 配置: Debug Win32 ------
14>生成启动时间为 2013/3/11 22:37:55
14>InitializeBuildStatus:
14> 正在创建“vc_mswud\webview\webview.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
10> printdlg.cpp
13>ClCompile:
13> dummy.cpp
14>CustomBuild:
14> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
14> 已复制 1 个文件。
14> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
10> printwin.cpp
10> progdlg.cpp
14> genrcdefs.h
11> grideditors.cpp
11> gridsel.cpp
11> helpext.cpp
14>ClCompile:
10> region.cpp
10> renderer.cpp
14> dummy.cpp
10> richmsgdlg.cpp
10> settings.cpp
10> spinctrl.cpp
10> statusbar.cpp
10> textentry.cpp
11> hyperlinkg.cpp
10> tooltip.cpp
10> toplevel.cpp
11> laywin.cpp
10> treectrl.cpp
10> uiaction.cpp
10> utilsgui.cpp
11> notifmsgg.cpp
10> uuid.cpp
11> odcombo.cpp
10> uxtheme.cpp
10> volume.cpp
10> window.cpp
10> busyinfo.cpp
11> propdlg.cpp
11> richtooltipg.cpp
11> sashwin.cpp
13> helpbest.cpp
13> htmllbox.cpp
13> helpctrl.cpp
13> helpdata.cpp
10> buttonbar.cpp
11> splash.cpp
10> choicbkg.cpp
10> choicdgg.cpp
11> timectrlg.cpp
11> tipdlg.cpp
11> treelist.cpp
14> webview.cpp
14> webviewarchivehandler.cpp
14> webview_ie.cpp
10> clrpickerg.cpp
10> collpaneg.cpp
11> wizard.cpp
10> combog.cpp
10> dcpsg.cpp
10> dirctrlg.cpp
13> helpdlg.cpp
10> dragimgg.cpp
10> filectrlg.cpp
10> filepickerg.cpp
13> helpfrm.cpp
11>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\adv.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxmsw29ud_adv.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
11>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(adv) does not match the Library's OutputFile property value (wxmsw29ud_adv). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
10> fontpickerg.cpp
10> graphicc.cpp
13> helpwnd.cpp
13> htmlcell.cpp
13> htmlfilt.cpp
14>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\webview.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxmsw29ud_webview.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
14>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(webview) does not match the Library's OutputFile property value (wxmsw29ud_webview). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
10> headerctrlg.cpp
10> infobar.cpp
10> listbkg.cpp
10> logg.cpp
14>Lib:
14> wx_vc9_webview.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\webview.lib
14>FinalizeBuildStatus:
14> 正在删除文件“vc_mswud\webview\webview.unsuccessfulbuild”。
14> 正在对“vc_mswud\webview\webview.lastbuildstate”执行 Touch 任务。
14>
14>生成成功。
14>
14>已用时间 00:00:15.50
10> markuptext.cpp
13> htmlpars.cpp
11>Lib:
11> wx_vc9_adv.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\adv.lib
11>FinalizeBuildStatus:
11> 正在删除文件“vc_mswud\adv\adv.unsuccessfulbuild”。
11> 正在对“vc_mswud\adv\adv.lastbuildstate”执行 Touch 任务。
11>
11>生成成功。
11>
11>已用时间 00:00:59.64
15>------ 已启动生成: 项目: qa, 配置: Debug Win32 ------
16>------ 已启动生成: 项目: xml, 配置: Debug Win32 ------
10> msgdlgg.cpp
10> numdlgg.cpp
15>生成启动时间为 2013/3/11 22:38:10
15>InitializeBuildStatus:
15> 正在创建“vc_mswud\qa\qa.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
16>生成启动时间为 2013/3/11 22:38:11
16>InitializeBuildStatus:
16> 正在创建“vc_mswud\xml\xml.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
15>CustomBuild:
15> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
10> printps.cpp
15> 已复制 1 个文件。
15> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
16>CustomBuild:
16> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
16> 已复制 1 个文件。
16> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
16> 另一个程序正在使用此文件,进程无法访问。
10> prntdlgg.cpp
15> genrcdefs.h
16>ClCompile:
16> dummy.cpp
15>ClCompile:
15> dummy.cpp
10> progdlgg.cpp
13> htmltag.cpp
13> htmlwin.cpp
10> renderg.cpp
10> richmsgdlgg.cpp
13> htmprint.cpp
10> scrlwing.cpp
10> selstore.cpp
10> spinctlg.cpp
13> m_dflist.cpp
10> splitter.cpp
10> srchctlg.cpp
10> statbmpg.cpp
13> m_fonts.cpp
10> stattextg.cpp
10> textdlgg.cpp
10> tipwin.cpp
13> m_hline.cpp
10> toolbkg.cpp
10> treebkg.cpp
10> treectlg.cpp
10> vlbox.cpp
10> vscroll.cpp
13> m_image.cpp
13> m_layout.cpp
13> m_links.cpp
13> m_list.cpp
13> m_pre.cpp
13> m_span.cpp
13> m_style.cpp
13> m_tables.cpp
13> styleparams.cpp
13> winpars.cpp
10> accel.cpp
13>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\html.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxmsw29ud_html.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
13>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(html) does not match the Library's OutputFile property value (wxmsw29ud_html). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
13>Lib:
13> wx_vc9_html.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\html.lib
13>FinalizeBuildStatus:
13> 正在删除文件“vc_mswud\html\html.unsuccessfulbuild”。
13> 正在对“vc_mswud\html\html.lastbuildstate”执行 Touch 任务。
13>
13>生成成功。
13>
13>已用时间 00:00:20.95
10> bmpbuttn.cpp
17>------ 已启动生成: 项目: xrc, 配置: Debug Win32 ------
17>生成启动时间为 2013/3/11 22:38:16
17>InitializeBuildStatus:
17> 正在创建“vc_mswud\xrc\xrc.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
17>CustomBuild:
17> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
17> 已复制 1 个文件。
17> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
17> genrcdefs.h
17>ClCompile:
17> dummy.cpp
10> button.cpp
10> checkbox.cpp
10> checklst.cpp
10> choice.cpp
10> combobox.cpp
16> xtixml.cpp
16> xml.cpp
10> control.cpp
16>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\xml.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxbase29ud_xml.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
16>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(xml) does not match the Library's OutputFile property value (wxbase29ud_xml). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
10> dialog.cpp
16>Lib:
16> wx_vc9_xml.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\xml.lib
16>FinalizeBuildStatus:
16> 正在删除文件“vc_mswud\xml\xml.unsuccessfulbuild”。
16> 正在对“vc_mswud\xml\xml.lastbuildstate”执行 Touch 任务。
16>
16>生成成功。
16>
16>已用时间 00:00:11.47
18>------ 已启动生成: 项目: aui, 配置: Debug Win32 ------
10> fdrepdlg.cpp
18>生成启动时间为 2013/3/11 22:38:22
18>InitializeBuildStatus:
18> 正在创建“vc_mswud\aui\aui.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
18>CustomBuild:
18> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
18> 已复制 1 个文件。
18> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
18> genrcdefs.h
18>ClCompile:
18> dummy.cpp
15> debugrpt.cpp
15> dbgrptg.cpp
17> xh_animatctrl.cpp
17> xh_bannerwindow.cpp
17> xh_bmp.cpp
17> xh_bmpbt.cpp
15>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\qa.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxmsw29ud_qa.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
15>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(qa) does not match the Library's OutputFile property value (wxmsw29ud_qa). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
17> xh_bmpcbox.cpp
17> xh_bttn.cpp
17> xh_cald.cpp
15>Lib:
15> wx_vc9_qa.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\qa.lib
15>FinalizeBuildStatus:
15> 正在删除文件“vc_mswud\qa\qa.unsuccessfulbuild”。
15> 正在对“vc_mswud\qa\qa.lastbuildstate”执行 Touch 任务。
15>
15>生成成功。
15>
15>已用时间 00:00:15.93
17> xh_chckb.cpp
19>------ 已启动生成: 项目: ribbon, 配置: Debug Win32 ------
17> xh_chckl.cpp
17> xh_choic.cpp
19>生成启动时间为 2013/3/11 22:38:27
17> xh_choicbk.cpp
19>InitializeBuildStatus:
19> 正在创建“vc_mswud\ribbon\ribbon.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
19>CustomBuild:
19> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
17> xh_clrpicker.cpp
19> 已复制 1 个文件。
19> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
19> genrcdefs.h
19>ClCompile:
19> dummy.cpp
17> xh_cmdlinkbn.cpp
17> xh_collpane.cpp
17> xh_combo.cpp
17> xh_comboctrl.cpp
17> xh_datectrl.cpp
17> xh_dirpicker.cpp
17> xh_dlg.cpp
17> xh_editlbox.cpp
17> xh_filectrl.cpp
17> xh_filepicker.cpp
17> xh_fontpicker.cpp
17> xh_frame.cpp
17> xh_gauge.cpp
17> xh_gdctl.cpp
17> xh_grid.cpp
17> xh_html.cpp
17> xh_htmllbox.cpp
17> xh_hyperlink.cpp
17> xh_listb.cpp
17> xh_listbk.cpp
17> xh_listc.cpp
17> xh_mdi.cpp
17> xh_menu.cpp
17> xh_notbk.cpp
17> xh_odcombo.cpp
17> xh_panel.cpp
17> xh_propdlg.cpp
17> xh_radbt.cpp
17> xh_radbx.cpp
17> xh_scrol.cpp
17> xh_scwin.cpp
17> xh_sizer.cpp
17> xh_slidr.cpp
17> xh_spin.cpp
17> xh_split.cpp
17> xh_srchctrl.cpp
17> xh_statbar.cpp
17> xh_stbmp.cpp
17> xh_stbox.cpp
17> xh_stlin.cpp
17> xh_sttxt.cpp
17> xh_text.cpp
17> xh_tglbtn.cpp
17> xh_timectrl.cpp
17> xh_toolb.cpp
17> xh_toolbk.cpp
17> xh_tree.cpp
17> xh_treebk.cpp
17> xh_unkwn.cpp
17> xh_wizrd.cpp
17> xmladv.cpp
17> xmlres.cpp
17> xmlrsall.cpp
17>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\xrc.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxmsw29ud_xrc.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
17>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(xrc) does not match the Library's OutputFile property value (wxmsw29ud_xrc). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
17>Lib:
17> wx_vc9_xrc.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\xrc.lib
17>FinalizeBuildStatus:
17> 正在删除文件“vc_mswud\xrc\xrc.unsuccessfulbuild”。
17> 正在对“vc_mswud\xrc\xrc.lastbuildstate”执行 Touch 任务。
17>
17>生成成功。
17>
17>已用时间 00:00:19.51
20>------ 已启动生成: 项目: propgrid, 配置: Debug Win32 ------
20>生成启动时间为 2013/3/11 22:38:36
20>InitializeBuildStatus:
20> 正在创建“vc_mswud\propgrid\propgrid.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
20>CustomBuild:
20> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
20> 已复制 1 个文件。
20> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
20> genrcdefs.h
20>ClCompile:
20> dummy.cpp
19> art_aui.cpp
19> art_internal.cpp
19> art_msw.cpp
19> bar.cpp
19> buttonbar.cpp
19> control.cpp
19> gallery.cpp
19> page.cpp
19> panel.cpp
19> toolbar.cpp
19>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\ribbon.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxmsw29ud_ribbon.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
19>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(ribbon) does not match the Library's OutputFile property value (wxmsw29ud_ribbon). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
10> gauge.cpp
19>Lib:
19> wx_vc9_ribbon.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\ribbon.lib
19>FinalizeBuildStatus:
19> 正在删除文件“vc_mswud\ribbon\ribbon.unsuccessfulbuild”。
19> 正在对“vc_mswud\ribbon\ribbon.lastbuildstate”执行 Touch 任务。
19>
19>生成成功。
19>
19>已用时间 00:00:12.26
21>------ 已启动生成: 项目: richtext, 配置: Debug Win32 ------
21>生成启动时间为 2013/3/11 22:38:40
21>InitializeBuildStatus:
21> 正在创建“vc_mswud\richtext\richtext.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
21>CustomBuild:
21> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
21> 已复制 1 个文件。
21> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
21> genrcdefs.h
21>ClCompile:
21> dummy.cpp
18> auibar.cpp
18> auibook.cpp
18> dockart.cpp
18> floatpane.cpp
18> framemanager.cpp
18> tabart.cpp
18> tabmdi.cpp
10> listbox.cpp
18>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\aui.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxmsw29ud_aui.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
18>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(aui) does not match the Library's OutputFile property value (wxmsw29ud_aui). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
18>Lib:
18> wx_vc9_aui.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\aui.lib
18>FinalizeBuildStatus:
18> 正在删除文件“vc_mswud\aui\aui.unsuccessfulbuild”。
18> 正在对“vc_mswud\aui\aui.lastbuildstate”执行 Touch 任务。
18>
18>生成成功。
18>
18>已用时间 00:00:19.66
22>------ 已启动生成: 项目: stc, 配置: Debug Win32 ------
22>生成启动时间为 2013/3/11 22:38:42
22>InitializeBuildStatus:
22> 正在创建“vc_mswud\stc\stc.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
22>CustomBuild:
22> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
10> listctrl.cpp
22> 已复制 1 个文件。
22> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
22> genrcdefs.h
22>ClCompile:
22> dummy.cpp
10> menu.cpp
10> notebook.cpp
10> radiobox.cpp
10> radiobut.cpp
20> advprops.cpp
20> editors.cpp
20> manager.cpp
20> property.cpp
10> scrolbar.cpp
10> slider.cpp
10> spinbutt.cpp
20> propgrid.cpp
10> statbmp.cpp
20> propgridiface.cpp
20> propgridpagestate.cpp
20> props.cpp
21> richtextbuffer.cpp
21> richtextctrl.cpp
21> richtextformatdlg.cpp
21> richtexthtml.cpp
10> statbox.cpp
10> statline.cpp
20>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\propgrid.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxmsw29ud_propgrid.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
20>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(propgrid) does not match the Library's OutputFile property value (wxmsw29ud_propgrid). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
20>Lib:
20> wx_vc9_propgrid.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\propgrid.lib
20>FinalizeBuildStatus:
20> 正在删除文件“vc_mswud\propgrid\propgrid.unsuccessfulbuild”。
20> 正在对“vc_mswud\propgrid\propgrid.lastbuildstate”执行 Touch 任务。
20>
20>生成成功。
20>
20>已用时间 00:00:13.50
23>------ 已启动生成: 项目: gl, 配置: Debug Win32 ------
22> PlatWX.cpp
22> ScintillaWX.cpp
22> stc.cpp
21> richtextimagedlg.cpp
23>生成启动时间为 2013/3/11 22:38:50
23>InitializeBuildStatus:
23> 正在创建“vc_mswud\gl\gl.unsuccessfulbuild”,因为已指定“AlwaysCreate”。
23>CustomBuild:
23> Creating ..\..\lib\vc_lib\mswud\wx\setup.h
23> 已复制 1 个文件。
23> Creating ..\..\lib\vc_lib\mswud\wx\msw\rcdefs.h
21> richtextprint.cpp
23> genrcdefs.h
23>ClCompile:
23> dummy.cpp
21> richtextstyledlg.cpp
21> richtextstyles.cpp
22>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\stc.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxmsw29ud_stc.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
22>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(stc) does not match the Library's OutputFile property value (wxmsw29ud_stc). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
22>Lib:
22> wx_vc9_stc.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\stc.lib
22>FinalizeBuildStatus:
22> 正在删除文件“vc_mswud\stc\stc.unsuccessfulbuild”。
22> 正在对“vc_mswud\stc\stc.lastbuildstate”执行 Touch 任务。
22>
22>生成成功。
22>
22>已用时间 00:00:09.53
21> richtextsymboldlg.cpp
21> richtextxml.cpp
21>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\richtext.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxmsw29ud_richtext.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
21>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(richtext) does not match the Library's OutputFile property value (wxmsw29ud_richtext). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
21>Lib:
21> wx_vc9_richtext.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\richtext.lib
21>FinalizeBuildStatus:
21> 正在删除文件“vc_mswud\richtext\richtext.unsuccessfulbuild”。
21> 正在对“vc_mswud\richtext\richtext.lastbuildstate”执行 Touch 任务。
21>
21>生成成功。
21>
21>已用时间 00:00:13.80
10> stattext.cpp
23> glcmn.cpp
23> glcanvas.cpp
10> textctrl.cpp
23>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\gl.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxmsw29ud_gl.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
23>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(gl) does not match the Library's OutputFile property value (wxmsw29ud_gl). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
23>Lib:
23> wx_vc9_gl.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\gl.lib
23>FinalizeBuildStatus:
23> 正在删除文件“vc_mswud\gl\gl.unsuccessfulbuild”。
23> 正在对“vc_mswud\gl\gl.lastbuildstate”执行 Touch 任务。
23>
23>生成成功。
23>
23>已用时间 00:00:07.72
10> tglbtn.cpp
10> toolbar.cpp
10> statusbr.cpp
10>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1299,5): warning MSB8012: TargetPath(C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\core.lib) does not match the Library's OutputFile property value (C:\wxWidgets-2.9.4\lib\vc_lib\wxmsw29ud_core.lib). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
10>C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V110\Microsoft.CppBuild.targets(1301,5): warning MSB8012: TargetName(core) does not match the Library's OutputFile property value (wxmsw29ud_core). This may cause your project to build incorrectly. To correct this, please make sure that $(OutDir), $(TargetName) and $(TargetExt) property values match the value specified in %(Lib.OutputFile).
10>Lib:
10> wx_vc9_core.vcxproj -> C:\wxWidgets-2.9.4\build\msw\..\..\lib\vc_lib\core.lib
10>FinalizeBuildStatus:
10> 正在删除文件“vc_mswud\core\core.unsuccessfulbuild”。
10> 正在对“vc_mswud\core\core.lastbuildstate”执行 Touch 任务。
10>
10>生成成功。
10>
10>已用时间 00:02:01.00
========== 生成: 成功 23 个,失败 0 个,最新 0 个,跳过 0 个 ==========