diff --git a/app/examples/CMakeLists.txt b/app/examples/CMakeLists.txt
index 2673980..ff7be55 100644
--- a/app/examples/CMakeLists.txt
+++ b/app/examples/CMakeLists.txt
@@ -4,5 +4,6 @@ foreach(EXAMPLE ${EXAMPLES})
add_executable(${EXAMPLE_BASENAME} ${EXAMPLE})
qt5_use_modules(${EXAMPLE_BASENAME} ${QT_DEPENDENCIES})
target_link_libraries(${EXAMPLE_BASENAME} openbr ${BR_THIRDPARTY_LIBS})
+ install(TARGETS ${EXAMPLE_BASENAME} RUNTIME DESTINATION bin)
add_test("${EXAMPLE_BASENAME}_test" ${EXAMPLE_BASENAME})
endforeach()
diff --git a/sdk/openbr_export.cpp b/sdk/openbr_export.cpp
index 808268c..e67ef49 100644
--- a/sdk/openbr_export.cpp
+++ b/sdk/openbr_export.cpp
@@ -181,11 +181,11 @@ $ br -help
* \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.
+ * -# Download Direct X Software Developement Kit and install. You may also need to install the latest OpenGL drivers from your graphics card manufacturer.
* -# From the MinGW-w64 Command Prompt:
* \code
* $ cd qt-everywhere-opensource-src-5.0.1
- * $ configure -prefix C:\Qt\5.0.1\mingw64 -opensource -confirm-license -nomake examples -nomake tests
+ * $ configure -prefix C:\Qt\5.0.1\mingw64 -opensource -confirm-license -nomake examples -nomake tests -opengl desktop
* $ mingw32-make
* $ mingw32-make install
* $ cd ..