Show
Ignore:
Timestamp:
05/25/10 22:33:29 (14 years ago)
Author:
smidl
Message:

doc - extensions

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/doc/tutorial/000install.dox

    r948 r983  
    66 
    77BDM comes in two basic versions: 
    8 \li \b binary   with precompiled executables and matlab mex files that can be configured by external text files 
    9 \li \b source \b code  that can be compiled into any required form.  
     8 - \b binary   with precompiled executables and matlab mex files that can be configured by external text files 
     9 - \b source \b code  that can be compiled into any required form.  
    1010 
    1111\section in_bin Binaries for BDMtoolbox 
     
    1313 
    1414Installation: 
    15 \li svn checkout http://mys.utia.cas.cz:1800/svn/mixpp/applications/bdmtoolbox/ into your local directory of your choice (this will be denoted \<toolbox_dir\>) 
    16 \li or download a prepared zip file from http://staff.utia.cas.cz/smidl/Public/bdmtoolbox_win32.zip and extract it to any directory (will be denoted \<toolbox_dir\>) 
    17 \li open matlab and type: 
     15 - svn checkout http://mys.utia.cas.cz:1800/svn/mixpp/applications/bdmtoolbox/ into your local directory of your choice (this will be denoted \<toolbox_dir\>) 
     16 - or download a prepared zip file from http://staff.utia.cas.cz/smidl/Public/bdmtoolbox_win32.zip and extract it to any directory (will be denoted \<toolbox_dir\>) 
     17 - open matlab and type: 
    1818\code  
    1919>> addpath <toolbox_dir>/mex;  
     
    2929\endcode 
    3030For linux, the default build dir is \<toolbox_dir\>/mex, hence only me and mex_classes need to be in the path. 
    31 \li the toolbox is ready to be used, test it e.g. by:  
     31 - the toolbox is ready to be used, test it e.g. by:  
    3232\code >> cd tutorial/userguide;  
    3333>> pdfds_example \endcode 
    34 \li if no error is given, the toolbox is installed correctly 
    35 \li proceed to tutorial at http://mys.utia.cas.cz:1800/trac/bdm/doxygen/pages.html to learn how to use it 
     34 - if no error is given, the toolbox is installed correctly 
     35 - proceed to tutorial at http://mys.utia.cas.cz:1800/trac/bdm/doxygen/pages.html to learn how to use it 
    3636 
    3737\section src Source code 
     
    4747 
    4848You need to have the following tools available on your system: 
    49 \li working C++ compiler, e.g. gcc on Linux, or Visual Studio on windows 
    50 \li CMake, a cross-platform build system, http://www.cmake.org 
     49 - working C++ compiler, e.g. gcc on Linux, or Visual Studio on windows 
     50 - CMake, a cross-platform build system, http://www.cmake.org 
    5151  
    5252\section lin Linux 
     
    8989Compilation of BDM: 
    9090 
    91  * When everything is set-up, make a copy of library\system\win32\run_cmake.bat, edit it  
     91 - When everything is set-up, make a copy of library\system\win32\run_cmake.bat, edit it  
    9292  to reflect your environment (i.e. change paths to cmake and your C++ target environment)  
    9393  and run it. 
    9494 
    95  * Alternatively, you can run CMake GUI and specify address to your \<bdm_dir\> 
     95 - Alternatively, you can run CMake GUI and specify address to your \<bdm_dir\> 
    9696 
    9797 
    98  * It should generate build files for your compiler in the main BDM  
     98 - It should generate build files for your compiler in the main BDM  
    9999  directory 
    100100 
     
    108108 
    109109Right now, Cmake configuration is hard-coded for one testing machine. Look for the paths in SetBDMEnv.cmake and correct them. 
    110 Open CMake GUI, clisk Configure followed by Create. 
     110Open CMake GUI, click Configure followed by Create. 
    111111Configuration files for your favourite build environment should be created in the BDM directory. 
    112112