diff --git a/openbr/openbr_export.cpp b/openbr/openbr_export.cpp
index 7654907..1bde615 100644
--- a/openbr/openbr_export.cpp
+++ b/openbr/openbr_export.cpp
@@ -87,17 +87,17 @@ $ br -help
* -# You will have to register with Microsoft after installation, but it's free.
* -# Grab any available Visual Studio Updates.
* -# Download and install Windows 8 SDK.
- * -# Download CMake 2.8.10.2 and install.
+ * -# Download and Install CMake 2.8.10.2
* -# During installation setup select "add CMake to PATH".
- * -# Download OpenCV 2.4.4.
+ * -# Download OpenCV 2.4.5.
* -# Consider the free open source program 7-Zip if you need a program to unarchive tarballs.
- * -# Move the "OpenCV-2.4.4" folder to "C:\".
+ * -# Move the "opencv-2.4.5" folder to "C:\".
* -# Open "VS2012 x64 Cross Tools Command Prompt" (from the Start Menu, select "All Programs" -> "Microsoft Visual Studio 2012" -> "Visual Studio Tools" -> "VS2012 x64 Cross Tools Command Prompt") and enter:
* \code
- * $ cd C:\OpenCV-2.4.4
+ * $ cd C:\opencv-2.4.5
* $ mkdir build-msvc2012
* $ cd build-msvc2012
- * $ cmake -G "NMake Makefiles" -DBUILD_opencv_java=OFF -DBUILD_opencv_world=ON -DBUILD_PERF_TESTS=OFF -DBUILD_TESTS=OFF -DWITH_FFMPEG=OFF -DCMAKE_BUILD_TYPE=Debug ..
+ * $ cmake -G "NMake Makefiles" -DBUILD_PERF_TESTS=OFF -DBUILD_TESTS=OFF -DWITH_FFMPEG=OFF -DCMAKE_BUILD_TYPE=Debug ..
* $ nmake
* $ nmake install
* $ cmake -DCMAKE_BUILD_TYPE=Release ..
@@ -105,19 +105,7 @@ $ br -help
* $ nmake install
* $ nmake clean
* \endcode
- * -# Download Qt 5.0.1 and unzip.
- * -# Install Perl/Python/Ruby dependencies as explained in the "Windows" section of "README". Make sure they are added to "path" when given the option during installation.
- * -# Download Direct X Software Developement Kit and install.
- * -# From the VS2012 x64 Cross Tools Command Prompt:
- * \code
- * $ cd qt-everywhere-opensource-src-5.0.1
- * $ configure -prefix C:\Qt\5.0.1\msvc2012 -opensource -confirm-license -nomake examples -nomake tests
- * $ nmake
- * $ nmake install
- * $ cd ..
- * $ rmdir /Q /S qt-everywhere-opensource-src-5.0.1
- * \endcode
- * -# nmake will take several hours to finish.
+ * -# Download and Install Qt 5.0.2
* -# Create a GitHub account and follow their instructions for setting up Git.
* -# Launch "Git Bash" from the Desktop and clone OpenBR:
* \code
@@ -133,31 +121,30 @@ $ br -help
* $ cd C:\openbr
* $ mkdir build-msvc2012
* $ cd build-msvc2012
- * $ cmake -G "CodeBlocks - NMake Makefiles" -DCMAKE_PREFIX_PATH="C:/OpenCV-2.4.4/build-msvc2012/install;C:/Qt/5.0.1/msvc2012" -DCMAKE_INSTALL_PREFIX="./install" -DBR_INSTALL_DEPENDENCIES=ON -DCMAKE_BUILD_TYPE=Release ..
+ * $ cmake -G "CodeBlocks - NMake Makefiles" -DCMAKE_PREFIX_PATH="C:/openCV-2.4.5/build-msvc2012/install;C:/Qt/Qt5.0.2/5.0.2/msvc2012_64" -DCMAKE_INSTALL_PREFIX="./install" -DBR_INSTALL_DEPENDENCIES=ON -DCMAKE_BUILD_TYPE=Release ..
* $ nmake
* $ nmake install
* \endcode
* -# Check out the "install" folder.
* -# Hack OpenBR!
- * -# Download Qt Creator IDE and install.
* -# From the VS2012 x64 Cross Tools Command Prompt:
* \code
- * $ C:\Qt\qtcreator-2.6.2\bin\qtcreator.exe
+ * $ C:\Qt\Qt5.0.2\Tools\QtCreator\bin\qtcreator.exe
* \endcode
* -# From the Qt Creator "Tools" menu select "Options..."
* -# Under "Kits" select "Desktop (default)"
- * -# For "Compiler:" select "Microsoft Visual C++ Compiler 11.0 (amd64)" and click "OK"
+ * -# For "Compiler:" select "Microsoft Visual C++ Compiler 11.0 (x86_amd64)" and click "OK"
* -# From the Qt Creator "File" menu select "Open File or Project...".
* -# Select "C:\openbr\CMakeLists.txt" then "Open".
+ * -# If prompted for the location of CMake, enter "C:\Program Files (x86)\CMake 2.8\bin\cmake.exe".
* -# Browse to your pre-existing build directory "C:\openbr\build-msvc2012" then select "Next".
- * -# Clear any text in the "arguments" box then select "Run CMake" then "Finish".
- * -# You're all set! You can find more information on Qt Creator here if you need.
+ * -# Select "Run CMake" then "Finish".
+ * -# You're all set! You can find more information on Qt Creator here if you need.
* -# (Optional) Package OpenBR!
- * -# Download NSIS 2.46 and install.
* -# From the VS2012 x64 Cross Tools Command Prompt:
* \code
* $ cd C:\openbr\build-msvc2012
- * $ nmake package
+ * $ cpack -G ZIP
* \endcode
*/