Run methods

   *** Example 5: make a package  
  akca@pc-eisti-school:$ mkdir ./bin; mkdir ./fml
  akca@pc-eisti-school:$ cd ./bin  
  akca@pc-eisti-school:$  cmake ../ -DFML_MAKE_EXAMPLES=ON -DFML_INSTALL_DOC=ON 
                            -DCMAKE_INSTALL_PREFIX=.
 

Note: if not UNIX add -G "xxxx Makefiles" (for example "MSYS Makefiles")

How compile execute program :

  Example 1: assume that you have already compile the program (on ./bin directory)
 akca@pc-eisti-school:$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"PATH OF INSTALL_PREFIX"
 akca@pc-eisti-school:$  cd ./bin
 akca@pc-eisti-school:$  ./src/fml-info.x  (more information about the program)
 akca@pc-eisti-school:$  ./examples/vector/vector_init.x (if examples is created)
 akca@pc-eisti-school:$  ./examples/matrix/matrix_init.x (if examples is created)
 akca@pc-eisti-school:$  ./examples/leq/leq_solve.x (if examples is created)
 
 All Classes Namespaces Files Functions Variables Defines