wxWidgets-3.0.0 & Visual Studio 2013.

Instaling wxWidgets (instruction for x86 & x64):
================================================
1. download wxWidgets-3.0.0 *.zip version;
2. unpack to library folder ("lib"),
3. for x86 libraries open "VS2013 x86 Native Tools Command Prompt" and go to folder: "lib"\wxWidgets-3.0.0\build\msw\
4. instal x86 debug libraries by typing in "comand prompt":
nmake -f makefile.vc BUILD=debug >> 2013x86_Debug_lib.txt
5. instal x86 release libraries by typing in "comand prompt":
nmake -f makefile.vc BUILD=release >> 2013x86_Release_lib.txt
6. for x64 libraries open "VS2013 x64 Native Tools Command Prompt" and go to folder: "lib"\wxWidgets-3.0.0\build\msw\. This is the same folder but opened in x64 environment.
7. instal x64 debug libraries by typing in "comand prompt":
nmake -f makefile.vc BUILD=debug TARGET_CPU=X64 >> 2013-X64_Debug_lib.txt
8. instal x64 release libraries by typing in "comand prompt":
nmake -f makefile.vc BUILD=release TARGET_CPU=X64 >> 2013-X64_Release_lib.txt

Configure MSVC Project for x86 compile:
============================
1. for testing install configured libs open wxWidgets project. Samples are include in "lib"\wxWidgets-3.0.0\samples\
2. compile project for x86 architecture & x64.

Important Issues for wxWidgets-3.0.0 & MSVC 2013 (x86):
=====================================
1. Projects for x86 environment configure like this:
- Go: Solution Explorer Window --> right click on project name (bold rext) --> Properties. It's open project properties.
2. In menu go: Configuration Properties --> Include Directories, and select folder for wxWidgets headers, "lib"\wxWidgets-3.0.0\include\ - it's for configure path to your own *.rc file.
3. Go: C/C++ --> General --> Additional Include Directories and set:
- first (important) add 'lib"\wxWidgets-3.0.0\include\msvc\' folder
- next add 'lib"\wxWidgets-3.0.0\include\' folder
4. Go: Linker --> General --> Additional Include Directories and add '"lib"\lib\vc_lib' for Debug and Release x86 and x64 projects;
for x86 arhitecture works fine, but x64 must configure in different way:
1.