VS2010自己配置編譯MFC專案

2021-06-01 01:00:03 字數 592 閱讀 4862

附上hello world **:

hello.h:

#ifndef hello_h

#define hello_h

public:

virtual bool initinstance();

};class cmainwindow : public cframewnd ;

#endif

hello.cpp:

#include "hello.h"

m_pmainwnd = new cmainwindow;

m_pmainwnd->showwindow(m_ncmdshow);

m_pmainwnd->updatewindow();

return true;

}begin_message_map(cmainwindow, cframewnd)

on_wm_paint()

end_message_map()

cmainwindow::cmainwindow()

void cmainwindow::onpaint()

VS2010靜態編譯

因為需要在其他電腦上執行.exe檔案,會有缺dll。所以需要靜態編譯生成.exe可執行檔案。在網上查詢了一下vs2010靜態編譯生成.exe的方法,有很多,試了其中一種,記錄一下,以便今後查閱。感謝提供方法的大神們!設定 1 專案 配置屬性 常規 mfc的使用 在靜態庫中使用mfc 如果有使用mfc...

VS2010編譯MFC程式出錯的原因

在已經安裝了vs2008的計算機上安裝vs2010,用vs2010新建乙個mfc程式,編譯都通不過,錯誤如下 1 stdafx.cpp 1 d program files microsoft visual studio 10.0 vc atlmfc include afxglobals.h 375 ...

使用VS2010編譯mod wsgi

為了在windows下使用apache發布django,檢視了文件,有兩種方式可以實現,一種是傳統方式,在apahce modules目錄下存放mod wsgi.so檔案,另一種是直接pip安裝,據文件說是比較方便,但我試了,沒有成功,不知道問題出在哪,也沒有相關中文資料,只好安裝vs2010編譯生...