码迷,mamicode.com
首页 > 编程语言 > 详细

CMake构建Visual Studio中MFC项目的MFC配置问题

时间:2020-08-06 09:29:39      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:shared   visual   dir   share   txt   c项目   and   nbsp   tle   

 

使用CMake生成MFC项目的时候,需要用到在共享DLL中使用 MFC,需要在CMakeLists文件中加上如下的代码:

ADD_DEFINITIONS(-D_AFXDLL)
SET(CMAKE_MFC_FLAG 2)
ADD_EXECUTABLE(detect WIN32 ${DIR_SRCS})

 

CMAKE_MFC_FLAG参数的意思是这样解释的:

To use MFC, the CMAKE_MFC_FLAG variable must be set as follows:

0: Use Standard Windows Libraries
1: Use MFC in a Static Library
2: Use MFC in a Shared DLL

CMake构建Visual Studio中MFC项目的MFC配置问题

标签:shared   visual   dir   share   txt   c项目   and   nbsp   tle   

原文地址:https://www.cnblogs.com/leoking01/p/13444201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!