MediaInfo, multimedia data manager
Беларуская Bulgarian Català Deutsch English Spanish Farsi Français Hrvatski Magyar Italiano 日本語 Georgian Korean Lithuanian Netherlands Polish Portuguese Portuguese (Brazil) Русский Shqip Sverige Thailandish Ukrainian Chinese (Simplified) Chinese (Traditional) (your flag?)
 

WxWidgets (MSVC)

Download

Compile

  • With command line, in directory %SOURCE_HOME%/build/msw:
    nmake -f makefile.vc BUILD=release SHARED=0 UNICODE=1 MSLU=1 USE_GUI=1 RUNTIME_LIBS=static MONOLITHIC=1 CPPFLAGS=/Zc:wchar_t

Install

  • Copy %SOURCE_HOME%/include/wx to /Shared/Include/wx
  • Copy %SOURCE_HOME%/lib/vc_lib/baseu/setup.h to /Shared/Include/wx/setup.h
  • Copy %SOURCE_HOME%/lib/vc_lib/wxbase26u.lib to /Shared/Library/MSVC/WxBase.lib

Adaptation

Option : Create a multi-compiler setup.h

  • Copy %SOURCE_HOME%/lib/vc_lib/baseu/setup.h to /Shared/Include/wx/setup.msvc.base.unicode.h
  • Create a file setup.h and put it in /Shared/Include/wx/:
    /*
    * wx/setup.h modified to support multiple compilers in one setup.h
    */
    #if defined(_MSC_VER)
     #if _MSC_VER >= 1400
      #pragma warning(disable : 4996) //MSVC8 : "deprecated" warning
     #endif
     #include <wx/setup.msvc.base.h>
     #endif
    #elif defined(__BORLANDC__)
     #include <wx/setup.bcc.base.h>
    #elif defined(__MINGW32__)
     #include <wx/setup.mingw32.base.h>
    #elif defined(__CYGWIN__)
     #include <wx/setup.cygwin.base.h>
    #else //Assume GCC/Linux
     #include <wx/setup.gcc.base.h>
    #endif
      
This page has not yet been translated, if you are interested to translate this page, please contact me