wxWidgets 컴파일

C++ 2012. 7. 24. 18:43

wxWidgets

build : 

http://dstein.egloos.com/2864277

http://wiki.wxwidgets.org/Microsoft_Visual_C%2B%2B_Guide

wxWidgets-2.9.3/build/msw/makefile.vc

__DEBUGINFO = /Zi

를 

__DEBUGINFO = /Z7 /Ylsymbol

로 변경

exe 파일 용량 줄이기 위해 release는 아무런 옵션을 안줌(__DEBUGINFO =). 결국, 디버그 정보 형식 : 사용안함

D:\SRC\TestWxWidgets\wxWidgets-2.9.3\include\wx\msw

#define wxUSE_DEBUG_CONTEXT 1


nmake -f makefile.vc SHARED=0 UNICODE=1 RUNTIME_LIBS=static BUILD=release clean 

nmake -f makefile.vc SHARED=0 UNICODE=1 RUNTIME_LIBS=static BUILD=release 

nmake -f makefile.vc SHARED=0 UNICODE=1 RUNTIME_LIBS=static BUILD=debug clean 

nmake -f makefile.vc SHARED=0 UNICODE=1 RUNTIME_LIBS=static BUILD=debug 


'C++' 카테고리의 다른 글

for_each 와 boost bind  (0) 2012.09.07
FireBreath  (0) 2012.08.10
c++ logging library  (0) 2012.08.08
std::regex - 대충 이런 느낌  (0) 2012.08.01
윈도우 폴더 관련  (0) 2012.07.24
wxWidgets tray icon (wxTaskBarIcon)  (0) 2012.07.24
taskbar gage (windows7 이상)  (0) 2012.07.24
wxZip 사용  (0) 2012.07.24