Commit a7dec5a500f9fb2a1ff621f8b3c550a67cdc9bd7

Authored by Josh Klontz
1 parent 4ecb4d64

more work on build documentation

Showing 1 changed file with 69 additions and 61 deletions
sdk/openbr_export.cpp
... ... @@ -78,17 +78,15 @@ $ br -help
78 78  
79 79 /*!
80 80 * \page windows_msvc Windows 7 - Visual Studio Express Edition 2012 - x64
81   - * \brief Installation from source with Visual Studio.
82   - *
83   - * -# Download and install <a href="http://www.microsoft.com/visualstudio/eng/downloads#d-express-windows-desktop">Visual Studio 2012 Express Edition for Windows Desktop</a>
84   - * -# If you need a program to mount ISO images then consider the free open source program <a href="http://wincdemu.sysprogs.org">WinCDEmu</a>.
  81 + * -# <a href="http://www.microsoft.com/visualstudio/eng/downloads#d-express-windows-desktop">Download Visual Studio 2012 Express Edition for Windows Desktop</a> and install.
  82 + * -# Consider the free open source program <a href="http://wincdemu.sysprogs.org">WinCDEmu</a> if you need a program to mount ISO images.
85 83 * -# You will have to register with Microsoft after installation, but it's free.
86 84 * -# Grab any available <a href="http://www.microsoft.com/visualstudio/eng/downloads#d-visual-studio-2012-update">Visual Studio Updates</a>.
87   - * -# Download and install <a href="http://www.cmake.org/files/v2.8/cmake-2.8.10.2-win32-x86.exe">CMake 2.8.10.2</a>
  85 + * -# <a href="http://www.cmake.org/files/v2.8/cmake-2.8.10.2-win32-x86.exe">Download CMake 2.8.10.2</a> and install.
88 86 * -# During installation setup select "add CMake to PATH".
89   - * -# Download and unarchive <a href="http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.4.3/OpenCV-2.4.3.tar.bz2/download">OpenCV 2.4.3</a>
90   - * -# If you need a program to unarchive tarballs then consider the free open source program <a href="http://www.7-zip.org/">7-Zip</a>.
91   - * -# Copy the "OpenCV-2.4.3" folder to "C:\".
  87 + * -# <a href="http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.4.3/OpenCV-2.4.3.tar.bz2/download">Download OpenCV 2.4.3</a> and unarchive.
  88 + * -# Consider the free open source program <a href="http://www.7-zip.org/">7-Zip</a> if you need a program to unarchive tarballs.
  89 + * -# Move the "OpenCV-2.4.3" folder to "C:\".
92 90 * -# 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:
93 91 * \code
94 92 * $ cd C:\OpenCV-2.4.3
... ... @@ -102,13 +100,13 @@ $ br -help
102 100 * $ nmake install
103 101 * $ nmake clean
104 102 * \endcode
105   - * -# <http://releases.qt-project.org/qt5/5.0.1/single/qt-everywhere-opensource-src-5.0.1.zip">Download Qt 5.0.1</a> and install:
106   - * -# Unzip "qt-everywhere-opensource-src-5.0.1.zip"
107   - * -# Install Perl/Python/Ruby dependencies as explained in the "Windows" section of "qt-everywhere-opensource-src-5.0.1\\README".
  103 + * -# <a href="http://releases.qt-project.org/qt5/5.0.1/single/qt-everywhere-opensource-src-5.0.1.zip">Download Qt 5.0.1</a> and unzip.
  104 + * -# 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.
  105 + * -# <a href="http://www.microsoft.com/en-us/download/confirmation.aspx?id=6812">Download Direct X Software Developement Kit</a> and install.
108 106 * -# From the VS2012 x64 Cross Tools Command Prompt:
109 107 * \code
110 108 * $ cd qt-everywhere-opensource-src-5.0.1
111   - * $ configure -prefix C:\Qt\5.0.1\msvc2012 -opensource -nomake examples -nomake tests -no-opengl
  109 + * $ configure -prefix C:\Qt\5.0.1\msvc2012 -opensource -confirm-license -nomake examples -nomake tests
112 110 * $ nmake
113 111 * $ nmake install
114 112 * $ cd ..
... ... @@ -124,20 +122,22 @@ $ br -help
124 122 * $ git submodule init
125 123 * $ git submodule update
126 124 * \endcode
127   - * -# Finally time to build OpenBR!
  125 + * -# Build OpenBR!
128 126 * -# From the VS2012 x64 Cross Tools Command Prompt:
129 127 * \code
130 128 * $ cd C:\openbr
131 129 * $ mkdir build-msvc2012
132 130 * $ cd build-msvc2012
133   - * $ cmake -G "CodeBlocks - NMake Makefiles" -D CMAKE_PREFIX_PATH="C:/OpenCV-2.4.3/build-msvc2012/install;C:/Qt/5.0.1/msvc2012" -D BR_INSTALL_DEPENDENCIES=ON -D CMAKE_BUILD_TYPE=Release ..
  131 + * $ cmake -G "CodeBlocks - NMake Makefiles" -D CMAKE_PREFIX_PATH="C:/OpenCV-2.4.3/build-msvc2012/install;C:/Qt/5.0.1/msvc2012" -D CMAKE_INSTALL_PREFIX="./install" -D BR_INSTALL_DEPENDENCIES=ON -D CMAKE_BUILD_TYPE=Release ..
134 132 * $ nmake
  133 + * $ nmake install
135 134 * \endcode
136   - * -# Start hacking OpenBR!
137   - * -# Download <a href="http://releases.qt-project.org/qtcreator/2.6.2/qt-creator-windows-opensource-2.6.2.exe">Qt Creator</a> IDE and install.
  135 + * -# Check out the "install" folder.
  136 + * -# Hack OpenBR!
  137 + * -# <a href="http://releases.qt-project.org/qtcreator/2.6.2/qt-creator-windows-opensource-2.6.2.exe">Download Qt Creator</a> IDE and install.
138 138 * -# From the VS2012 x64 Cross Tools Command Prompt:
139 139 * \code
140   - * $ "C:\Qt\qtcreator-2.6.2\bin\qtcreator.exe"
  140 + * $ C:\Qt\qtcreator-2.6.2\bin\qtcreator.exe
141 141 * \endcode
142 142 * -# From the Qt Creator "Tools" menu select "Options..."
143 143 * -# Under "Kits" select "Desktop (default)"
... ... @@ -147,8 +147,8 @@ $ br -help
147 147 * -# Browse to your prexisting build directory "C:\openbr\build-msvc2012" then select "Next".
148 148 * -# Clear any text in the "arguments" box then select "Run CMake" then "Finish".
149 149 * -# You're all set! You can find more information on Qt Creator <a href="http://qt-project.org/doc/qtcreator-2.6/">here</a> if you need.
150   - * -# (Optional) To package OpenBR:
151   - * -# Download and install <a href="http://sourceforge.net/projects/nsis/files/NSIS%202/2.46/nsis-2.46-setup.exe/download?use_mirror=iweb&download=">NSIS 2.46</a>.
  150 + * -# Package OpenBR!
  151 + * -# <a href="http://sourceforge.net/projects/nsis/files/NSIS%202/2.46/nsis-2.46-setup.exe/download?use_mirror=iweb&download=">Download NSIS 2.46</a> and install.
152 152 * -# From the VS2012 x64 Cross Tools Command Prompt:
153 153 * \code
154 154 * $ cd C:\openbr\build-msvc2012
... ... @@ -158,16 +158,14 @@ $ br -help
158 158  
159 159 /*!
160 160 * \page windows_mingw Windows 7 - MinGW-w64 2.0 - x64
161   - * \brief Installation from source with MinGW-w64.
162   - *
163 161 * -# <a href="http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/rubenvb/gcc-4.7-release/x86_64-w64-mingw32-gcc-4.7.2-release-win64_rubenvb.7z/download">Download MinGW-w64 GCC 4.7.2</a> and unarchive.
164 162 * -# Use the free open source program <a href="http://www.7-zip.org/">7-Zip</a> to unarchive.
165   - * -# Copy "x86_64-w64-mingw32-gcc-4.7.2-release-win64_rubenvb\mingw64" to "C:\".
  163 + * -# Move "x86_64-w64-mingw32-gcc-4.7.2-release-win64_rubenvb\mingw64" to "C:\".
166 164 * -# <a href="http://www.cmake.org/files/v2.8/cmake-2.8.10.2-win32-x86.exe">Download CMake 2.8.10.2</a> and install.
167 165 * -# During installation setup select "add CMake to PATH".
168 166 * -# <a href="http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.4.3/OpenCV-2.4.3.tar.bz2/download">Download OpenCV 2.4.3</a> and unarchive.
169   - * -# If you need a program to unarchive tarballs then consider the free open source program <a href="http://www.7-zip.org/">7-Zip</a>.
170   - * -# Copy the "OpenCV-2.4.3" folder to "C:\".
  167 + * -# Consider the free open source program <a href="http://www.7-zip.org/">7-Zip</a> if you need a program to unarchive tarballs.
  168 + * -# Move the "OpenCV-2.4.3" folder to "C:\".
171 169 * -# From the MinGW-w64 Command Prompt (double-click "C:\mingw64\mingw64env.cmd"):
172 170 * \code
173 171 * $ cd C:\OpenCV-2.4.3
... ... @@ -181,13 +179,13 @@ $ br -help
181 179 * $ mingw32-make install
182 180 * $ mingw32-make clean
183 181 * \endcode
184   - * -# <http://releases.qt-project.org/qt5/5.0.1/single/qt-everywhere-opensource-src-5.0.1.zip">Download Qt 5.0.1</a> and install:
185   - * -# Unzip "qt-everywhere-opensource-src-5.0.1.zip"
186   - * -# Install Perl/Python/Ruby dependencies as explained in the "Windows" section of "qt-everywhere-opensource-src-5.0.1\\README".
  182 + * -# <a href="http://releases.qt-project.org/qt5/5.0.1/single/qt-everywhere-opensource-src-5.0.1.zip">Download Qt 5.0.1</a> and unzip.
  183 + * -# 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.
  184 + * -# <a href="http://www.microsoft.com/en-us/download/confirmation.aspx?id=6812">Download Direct X Software Developement Kit</a> and install.
187 185 * -# From the MinGW-w64 Command Prompt:
188 186 * \code
189 187 * $ cd qt-everywhere-opensource-src-5.0.1
190   - * $ configure -prefix C:\Qt\5.0.1\mingw64 -opensource -nomake examples -nomake tests -no-opengl
  188 + * $ configure -prefix C:\Qt\5.0.1\mingw64 -opensource -confirm-license -nomake examples -nomake tests
191 189 * $ mingw32-make
192 190 * $ mingw32-make install
193 191 * $ cd ..
... ... @@ -203,32 +201,33 @@ $ br -help
203 201 * $ git submodule init
204 202 * $ git submodule update
205 203 * \endcode
206   - * -# Finally time to build OpenBR!
  204 + * -# Build OpenBR!
207 205 * -# From the MinGW-w64 Command Prompt:
208 206 * \code
209 207 * $ cd C:\openbr
210 208 * $ mkdir build-mingw64
211 209 * $ cd build-mingw64
212   - * $ cmake -G "CodeBlocks - MinGW Makefiles" -D CMAKE_RC_COMPILER="C:/mingw64/bin/windres.exe" -D CMAKE_PREFIX_PATH="C:/OpenCV-2.4.3/build-mingw64/install;C:/Qt/5.0.1/mingw64" -D BR_INSTALL_DEPENDENCIES=ON -D CMAKE_BUILD_TYPE=Release ..
  210 + * $ cmake -G "CodeBlocks - MinGW Makefiles" -D CMAKE_RC_COMPILER="C:/mingw64/bin/windres.exe" -D CMAKE_PREFIX_PATH="C:/OpenCV-2.4.3/build-mingw64/install;C:/Qt/5.0.1/mingw64" -D CMAKE_INSTALL_PREFIX="./install" -D BR_INSTALL_DEPENDENCIES=ON -D CMAKE_BUILD_TYPE=Release ..
213 211 * $ mingw32-make
214   - * $ mingw32-make package
  212 + * $ mingw32-make install
215 213 * \endcode
216   - * -# Start hacking OpenBR!
217   - * -# Download and install <a href="http://releases.qt-project.org/qtcreator/2.6.2/qt-creator-windows-opensource-2.6.2.exe">Qt Creator</a> IDE.
  214 + * -# Check out the "install" folder.
  215 + * -# Hack OpenBR!
  216 + * -# <a href="http://releases.qt-project.org/qtcreator/2.6.2/qt-creator-windows-opensource-2.6.2.exe">Download Qt Creator</a> IDE and install.
218 217 * -# From the MinGW-w64 Command Prompt:
219 218 * \code
220 219 * $ "C:\Qt\qtcreator-2.6.2\bin\qtcreator.exe"
221 220 * \endcode
222 221 * -# From the Qt Creator "Tools" menu select "Options..."
223 222 * -# Under "Kits" select "Desktop (default)"
224   - * -# For "Compiler:" select "MinGW (x84 64bit)" and click "OK"
  223 + * -# For "Compiler:" select "MinGW (x86 64bit)" and click "OK"
225 224 * -# From the Qt Creator "File" menu select "Open File or Project...".
226 225 * -# Select "C:\openbr\CMakeLists.txt" then "Open".
227 226 * -# Browse to your prexisting build directory "C:\openbr\build-mingw64" then select "Next".
228 227 * -# Clear any text in the "arguments" box then select "Run CMake" then "Finish".
229 228 * -# You're all set! You can find more information on Qt Creator <a href="http://qt-project.org/doc/qtcreator-2.6/">here</a> if you need.
230   - * -# (Optional) To package OpenBR:
231   - * -# Download and install <a href="http://sourceforge.net/projects/nsis/files/NSIS%202/2.46/nsis-2.46-setup.exe/download?use_mirror=iweb&download=">NSIS 2.46</a>.
  229 + * -# Package OpenBR!
  230 + * -# <a href="http://sourceforge.net/projects/nsis/files/NSIS%202/2.46/nsis-2.46-setup.exe/download?use_mirror=iweb&download=">Download NSIS 2.46</a> and install.
232 231 * -# From the MinGW-w64 Command Prompt:
233 232 * \code
234 233 * $ cd C:\openbr\build-mingw64
... ... @@ -238,10 +237,8 @@ $ br -help
238 237  
239 238 /*!
240 239 * \page osx_clang OS X Mountain Lion - Clang/LLVM 3.1 - x64
241   - * \brief Installation from source with Clang.
242   - *
243 240 * -# Download and install the latest "Xcode" and "Command Line Tools" from the <a href="https://developer.apple.com/downloads/index.action#">Apple Developer Downloads</a> page.
244   - * -# <a href="http://www.cmake.org/files/v2.8/cmake-2.8.10.2.tar.gz">Download CMake 2.8.10.2</a> and install:
  241 + * -# <a href="http://www.cmake.org/files/v2.8/cmake-2.8.10.2.tar.gz">Download CMake 2.8.10.2</a>.
245 242 * \code
246 243 * $ cd ~/Downloads
247 244 * $ tar -xf cmake-2.8.10.2.tar.gz
... ... @@ -252,7 +249,7 @@ $ br -help
252 249 * $ cd ..
253 250 * $ rm -r cmake-2.8.10.2
254 251 * \endcode
255   - * -# <a href="http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.4.3/OpenCV-2.4.3.tar.bz2/download">Download OpenCV 2.4.3</a> and install:
  252 + * -# <a href="http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.4.3/OpenCV-2.4.3.tar.bz2/download">Download OpenCV 2.4.3</a>.
256 253 * \code
257 254 * $ cd ~/Downloads
258 255 * $ tar -xf OpenCV-2.4.3.tar.bz2
... ... @@ -266,14 +263,14 @@ $ br -help
266 263 * $ rm -r OpenCV-2.4.3
267 264 * \endcode
268 265 * -# <a href="http://releases.qt-project.org/qt5/5.0.1/qt-mac-opensource-5.0.1-clang-offline.dmg">Download Qt 5.0.1</a> and install.
269   - * -# Create a <a href="github.com">GitHub</a> account, follow their instructions for <a href="https://help.github.com/articles/set-up-git">setting up Git</a>, then clone:
  266 + * -# Create a <a href="github.com">GitHub</a> account, follow their instructions for <a href="https://help.github.com/articles/set-up-git">setting up Git</a>.
270 267 * \code
271 268 * $ git clone https://github.com/biometrics/openbr.git
272 269 * $ cd openbr
273 270 * $ git submodule init
274 271 * $ git submodule update
275 272 * \endcode
276   - * -# Finally time to build OpenBR!
  273 + * -# Build OpenBR!
277 274 * \code
278 275 * $ cd openbr
279 276 * $ mkdir build
... ... @@ -282,7 +279,7 @@ $ br -help
282 279 * $ make -j4
283 280 * $ make install
284 281 * \endcode
285   - * -# Start hacking OpenBR!
  282 + * -# Hack OpenBR!
286 283 * -# Open Qt Creator IDE
287 284 * \code
288 285 * $ open ~/Qt5.0.1/Qt\ Creator.app
... ... @@ -292,6 +289,11 @@ $ br -help
292 289 * -# Browse to your prexisting build directory "~/openbr/build" then select "Continue".
293 290 * -# Select "Run CMake" then "Done".
294 291 * -# You're all set! You can find more information on Qt Creator <a href="http://qt-project.org/doc/qtcreator">here</a> if you need.
  292 + * -# Package OpenBR!
  293 + * \code
  294 + * $ cd openbr/build
  295 + * $ make package
  296 + * \endcode
295 297 * -# Build OpenBR documentation!
296 298 * -# <a href="ftp://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.3.1.src.tar.gz">Download Doxygen 1.8.3.1</a> and install:
297 299 * \code
... ... @@ -306,7 +308,7 @@ $ br -help
306 308 * \endcode
307 309 * -# Modify build settings and recompile:
308 310 * \code
309   - * $ cd ~/openbr/build
  311 + * $ cd openbr/build
310 312 * $ cmake -D BR_BUILD_DOCUMENTATION=ON ..
311 313 * $ make -j4
312 314 * $ open html/index.html
... ... @@ -315,14 +317,12 @@ $ br -help
315 317  
316 318 /*!
317 319 * \page linux_gcc Ubuntu 12.04 LTS - GCC 4.6.3 - x64
318   - * \brief Installation from source with GCC.
319   - *
320   - * -# Install GCC 4.6.3:
  320 + * -# Install GCC 4.6.3.
321 321 * \code
322 322 * $ sudo apt-get update
323 323 * $ sudo apt-get install build-essential
324 324 * \endcode
325   - * -# <a href="http://www.cmake.org/files/v2.8/cmake-2.8.10.2.tar.gz">Download CMake 2.8.10.2</a> and install:
  325 + * -# <a href="http://www.cmake.org/files/v2.8/cmake-2.8.10.2.tar.gz">Download CMake 2.8.10.2</a>.
326 326 * \code
327 327 * $ cd ~/Downloads
328 328 * $ tar -xf cmake-2.8.10.2.tar.gz
... ... @@ -333,7 +333,7 @@ $ br -help
333 333 * $ cd ..
334 334 * $ rm -r cmake-2.8.10.2
335 335 * \endcode
336   - * -# <a href="http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.4.3/OpenCV-2.4.3.tar.bz2/download">Download OpenCV 2.4.3</a> and install:
  336 + * -# <a href="http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.4.3/OpenCV-2.4.3.tar.bz2/download">Download OpenCV 2.4.3</a>.
337 337 * \code
338 338 * $ cd ~/Downloads
339 339 * $ tar -xf OpenCV-2.4.3.tar.bz2
... ... @@ -346,21 +346,21 @@ $ br -help
346 346 * $ cd ../..
347 347 * $ rm -r OpenCV-2.4.3
348 348 * \endcode
349   - * -# <a href="http://releases.qt-project.org/qt5/5.0.1/qt-linux-opensource-5.0.1-x86_64-offline.run">Download Qt 5.0.1</a> and install:
  349 + * -# <a href="http://releases.qt-project.org/qt5/5.0.1/qt-linux-opensource-5.0.1-x86_64-offline.run">Download Qt 5.0.1</a>.
350 350 * \code
351 351 * $ cd ~/Downloads
352 352 * $ chmod +x qt-linux-opensource-5.0.1-x86_64-offline.run
353 353 * $ ./qt-linux-opensource-5.0.1-x86_64-offline.run
354 354 * $ rm qt-linux-opensource-5.0.1-x86_64-offline.run
355 355 * \endcode
356   - * -# Create a <a href="github.com">GitHub</a> account, follow their instructions for <a href="https://help.github.com/articles/set-up-git">setting up Git</a>, then clone:
  356 + * -# Create a <a href="github.com">GitHub</a> account, follow their instructions for <a href="https://help.github.com/articles/set-up-git">setting up Git</a>.
357 357 * \code
358 358 * $ git clone https://github.com/biometrics/openbr.git
359 359 * $ cd openbr
360 360 * $ git submodule init
361 361 * $ git submodule update
362 362 * \endcode
363   - * -# Finally time to build OpenBR!
  363 + * -# Build OpenBR!
364 364 * \code
365 365 * $ cd openbr
366 366 * $ mkdir build
... ... @@ -369,7 +369,7 @@ $ br -help
369 369 * $ make -j4
370 370 * $ make install
371 371 * \endcode
372   - * -# Start hacking OpenBR!
  372 + * -# Hack OpenBR!
373 373 * -# Open Qt Creator IDE
374 374 * \code
375 375 * $ ~/Qt5.0.1/Tools/QtCreator/bin/qtcreator &
... ... @@ -379,14 +379,17 @@ $ br -help
379 379 * -# Browse to your prexisting build directory "~/openbr/build" then select "Next".
380 380 * -# Select "Run CMake" then "Finish".
381 381 * -# You're all set! You can find more information on Qt Creator <a href="http://qt-project.org/doc/qtcreator-2.6/">here</a> if you need.
  382 + * -# Package OpenBR!
  383 + * \code
  384 + * $ cd openbr/build
  385 + * $ make package
  386 + * \endcode
382 387 */
383 388  
384 389 /*!
385 390 * \page linux_icc Ubuntu 12.04 LTS - Intel C++ Studio XE 2013 - x64
386   - * \brief Installation from source with ICC.
387   - *
388 391 * -# Assuming you meet the eligibility requirements, <a href="http://software.intel.com/en-us/non-commercial-software-development">Download Intel C++ Studio XE 2013</a> and install.
389   - * -# <a href="http://www.cmake.org/files/v2.8/cmake-2.8.10.2.tar.gz">Download CMake 2.8.10.2</a> and install:
  392 + * -# <a href="http://www.cmake.org/files/v2.8/cmake-2.8.10.2.tar.gz">Download CMake 2.8.10.2</a>.
390 393 * \code
391 394 * $ cd ~/Downloads
392 395 * $ tar -xf cmake-2.8.10.2.tar.gz
... ... @@ -397,7 +400,7 @@ $ br -help
397 400 * $ cd ..
398 401 * $ rm -r cmake-2.8.10.2
399 402 * \endcode
400   - * -# <a href="http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.4.3/OpenCV-2.4.3.tar.bz2/download">Download OpenCV 2.4.3</a> and install:
  403 + * -# <a href="http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.4.3/OpenCV-2.4.3.tar.bz2/download">Download OpenCV 2.4.3</a>.
401 404 * \code
402 405 * $ cd ~/Downloads
403 406 * $ tar -xf OpenCV-2.4.3.tar.bz2
... ... @@ -410,21 +413,21 @@ $ br -help
410 413 * $ cd ../..
411 414 * $ rm -r OpenCV-2.4.3
412 415 * \endcode
413   - * -# <a href="http://releases.qt-project.org/qt5/5.0.1/qt-linux-opensource-5.0.1-x86_64-offline.run">Download Qt 5.0.1</a> and install:
  416 + * -# <a href="http://releases.qt-project.org/qt5/5.0.1/qt-linux-opensource-5.0.1-x86_64-offline.run">Download Qt 5.0.1</a>.
414 417 * \code
415 418 * $ cd ~/Downloads
416 419 * $ chmod +x qt-linux-opensource-5.0.1-x86_64-offline.run
417 420 * $ ./qt-linux-opensource-5.0.1-x86_64-offline.run
418 421 * $ rm qt-linux-opensource-5.0.1-x86_64-offline.run
419 422 * \endcode
420   - * -# Create a <a href="github.com">GitHub</a> account, follow their instructions for <a href="https://help.github.com/articles/set-up-git">setting up Git</a>, then clone:
  423 + * -# Create a <a href="github.com">GitHub</a> account, follow their instructions for <a href="https://help.github.com/articles/set-up-git">setting up Git</a>.
421 424 * \code
422 425 * $ git clone https://github.com/biometrics/openbr.git
423 426 * $ cd openbr
424 427 * $ git submodule init
425 428 * $ git submodule update
426 429 * \endcode
427   - * -# Finally time to build OpenBR!
  430 + * -# Build OpenBR!
428 431 * \code
429 432 * $ cd openbr
430 433 * $ mkdir build-icc
... ... @@ -433,7 +436,7 @@ $ br -help
433 436 * $ make -j4
434 437 * $ make install
435 438 * \endcode
436   - * -# Start hacking OpenBR!
  439 + * -# Hack OpenBR!
437 440 * -# Open Qt Creator IDE
438 441 * \code
439 442 * $ ~/Qt5.0.1/Tools/QtCreator/bin/qtcreator &
... ... @@ -443,6 +446,11 @@ $ br -help
443 446 * -# Browse to your prexisting build directory "~/openbr/build" then select "Next".
444 447 * -# Select "Run CMake" then "Finish".
445 448 * -# You're all set! You can find more information on Qt Creator <a href="http://qt-project.org/doc/qtcreator-2.6/">here</a> if you need.
  449 + * -# Package OpenBR!
  450 + * \code
  451 + * $ cd openbr/build
  452 + * $ make package
  453 + * \endcode
446 454 */
447 455  
448 456 /*!
... ...