> <\body>> The latest version under development can be obtained with: <\shell-fragment> svn checkout https://scm.gforge.inria.fr/svn/mmx/mmxlight Here is the list of package(s) to be installed before configuring from its source code: <\with|par-mode|center> >|>|>|>>||../../../basix/doc/texmacs/index.en.tm>>|>|>|>>||http://ftp.gnu.org/gnu/readline/readline-6.0.tar.gz>>|>|>|>>||http://ftp.gnu.org/gnu/ncurses/ncurses-5.7.tar.gz>>|>|>|>>>>> 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(Mmxlight) include_directories (${MMXLIGHT_INCLUDE_DIR}) link_directories (${MMXLIGHT_LIBRARY_DIR}) link_libraries (${MMXLIGHT_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.>