cmake/Tests/MFC/try_compile/CMakeLists.txt

16 lines
325 B
CMake
Raw Normal View History

2023-07-02 19:51:09 +02:00
cmake_minimum_required(VERSION 3.5)
2012-02-18 12:40:36 +02:00
project(try_compile_mfc)
set(files
stdafx.cpp
stdafx.h
)
set(CMAKE_MFC_FLAG "2")
# VS generators add this automatically based on the CMAKE_MFC_FLAG value,
# but generators matching "Make" require:
add_definitions(-D_AFXDLL)
add_executable(simplest_possible_mfc_exe WIN32 ${files})