From c43cece6e6be4189952544d9a9372b17cb7a9c79 Mon Sep 17 00:00:00 2001 From: liefooga Date: Fri, 6 Jul 2007 13:09:13 +0000 Subject: [PATCH] README file up-to-date git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@566 331e1502-861f-0410-8da2-ba01fb791d7f --- trunk/paradiseo-moeo/README | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/trunk/paradiseo-moeo/README b/trunk/paradiseo-moeo/README index 04cfef5c6..a4ec3b608 100644 --- a/trunk/paradiseo-moeo/README +++ b/trunk/paradiseo-moeo/README @@ -13,15 +13,27 @@ paradiseo-help@lists.gforge.inria.fr ======================================================================= BUILDING PARADISEO-MOEO ======================================================================= -The basic installation procedure goes the following: +The basic installation procedure goes the following. -Go to your build-directory and run - > cmake -DEOdir=$(EO_SRC) +To compile paradiseo-moeo in the default directory, +go to paradiseo-moeo/build/ and run: + > cmake ../ -DEOdir=$(EO_SRC) > make + // for an easy-use of the provided lessons + > make install // optional (if the documentation is not already available) > make doc -where $(EO_SRC) is the top-level source directory of PARADISEO-EO. +To compile paradiseo-moeo anywhere else, simply run: + > cmake $(MOEO) -DEOdir=$(EO_SRC) + > make + // for an easy-use of the provided lessons + > make install + // optional (if the documentation is not already available) + > make doc + +where $(EO_SRC) is the top-level source directory of PARADISEO-EO, +and $(MOEO) is the top-level directory of PARADISEO-MOEO. To clean everything, simply run > make clean