error LNK2019: 无法解析的外部符号 wWinMain

问题描述

error LNK2019: 无法解析的外部符号 wWinMain,该符号在函数 “int __cdecl __scrt_common_main_seh(void)” (?__scrt_common_main_seh@@YAHXZ) 中被引用

问题原因

程序入口类型设置不正确。

解决方法

解决方法为:修改属性页中的预定义和子系统类型。

1、window类型:
  1. 操作路径:Configuration Properties->C/C+±>Preprocessor,然后在右边栏的Preprocessor Definitions对应的项改为:_WINDOWS
  2. 操作路径:Configuration Properties->Linker->System,然后在右边栏的SubSystem对应的项改为:Windows(/SUBSYSTEM:WINDOWS)
2、console类型:
  1. 操作路径:Configuration Properties->C/C+±>Preprocessor,然后在右边栏的Preprocessor Definitions对应的项改为:_CONSOLE
  2. 操作路径:Configuration Properties->Linker->System,然后在右边栏的SubSystem对应的项改为CONSOLE(/SUBSYSTEM:CONSOLE)

你可能感兴趣的:(C++,Qt)