> <\body>> The latest version under development can be obtained with: <\shell-fragment> svn checkout https://scm.gforge.inria.fr/svn/mmx/symbolix Here is the list of package(s) to be installed before configuring from its source code: <\with|par-mode|center> >|>|>|>>||../../../algebramix/doc/texmacs/index.en.tm>>|>|>|>>>>> To run the configuration, |http://www.cmake.org/> (version at least 2.8) should be available on your platform. The package can be configured out-of-source (eg. in a folder ) as follows: <\shell-fragment> cmake ../(path_to_package) make The folder where the construction will be run is in this case . If you want to install it globally in your environment after it is compiled, you can run the following instructions (possibly with the rights): <\shell-fragment> cmake ../(path_to_package) -DCMAKE_INSTALL_PREFIX=install_dir\> make make install where install_dir\>> is the folder where to install the package so that the libraries go in install_dir\>/lib>; and the headers in install_dir\>/include>. If not specified, the package is installed by default in . To see the operations performed during the command, you can use:\ <\shell-fragment> make VERBOSE=1 In case you have not run , you can set up your environment locally in the folder with: <\shell-fragment> cd ../build source local_env To use the package in a project, you can simply add the following lines in your file : <\cpp-fragment> find_package(Symbolix) include_directories (${SYMBOLIX_INCLUDE_DIR}) link_directories (${SYMBOLIX_LIBRARY_DIR}) link_libraries (${SYMBOLIX_LIBRARIES}) . If you don't have this file, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.>