mirror of
https://github.com/reactos/CMake.git
synced 2024-12-21 03:00:59 +00:00
36b0c432cf
Build a simple, do-nothing VS 7.1 MFC wizard generated app with CMake. Build it two different ways via ExternalProject, one with CMAKE_MFC_FLAG set to 1 for linking to MFC statically, and one with CMAKE_MFC_FLAG set to 2 for linking to the shared MFC dlls. Validate that the install tree of the static build has only one *.exe file in it and nothing else. Also validate that the install tree of the shared library build has multiple files in it (no less than 3) and that they are only of the expected types *.exe, *.dll and *.manifest. This commit does not address the issue reported in #11213, it merely adds a test that may be used to show that the bug report is valid. After this commit, the MFC test should fail on any dashboard machines that have MSVC defined, but cannot build an MFC app. We can then analyze that failure data as input to solving the issue.
49 lines
982 B
C++
49 lines
982 B
C++
// mfc1View.h : interface of the Cmfc1View class
|
|
//
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
class Cmfc1View : public CView
|
|
{
|
|
protected: // create from serialization only
|
|
Cmfc1View();
|
|
DECLARE_DYNCREATE(Cmfc1View)
|
|
|
|
// Attributes
|
|
public:
|
|
Cmfc1Doc* GetDocument() const;
|
|
|
|
// Operations
|
|
public:
|
|
|
|
// Overrides
|
|
public:
|
|
virtual void OnDraw(CDC* pDC); // overridden to draw this view
|
|
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
|
|
protected:
|
|
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
|
|
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
|
|
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
|
|
|
|
// Implementation
|
|
public:
|
|
virtual ~Cmfc1View();
|
|
#ifdef _DEBUG
|
|
virtual void AssertValid() const;
|
|
virtual void Dump(CDumpContext& dc) const;
|
|
#endif
|
|
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
#ifndef _DEBUG // debug version in mfc1View.cpp
|
|
inline Cmfc1Doc* Cmfc1View::GetDocument() const
|
|
{ return reinterpret_cast<Cmfc1Doc*>(m_pDocument); }
|
|
#endif
|