# HG changeset patch # User Peter Kovacs # Date 1245170841 -7200 # Node ID efa883909c0653f4c60c8af53f137bd1493a731a # Parent 76d160eba8d44b6e92f5ff5f4f06c57e0961fd62 Slightly improve help comments diff -r 76d160eba8d4 -r efa883909c06 CMakeLists.txt --- a/CMakeLists.txt Tue Jun 02 16:27:06 2009 +0100 +++ b/CMakeLists.txt Tue Jun 16 18:47:21 2009 +0200 @@ -5,12 +5,12 @@ SET(PROJECT_NAME "LEMON-PROJECT-TEMPLATE") ## Change 'hg-tip' to the current version number of your project if you wish. -## Optionally, you can leave it as is as set PROJECT_VERSION from the cmake-gui -## when you make a release. +## Optionally, you can leave it as is and set PROJECT_VERSION from +## the cmake-gui when you make a release. ## The last parameter is a help string displayed by CMAKE. SET(PROJECT_VERSION "hg-tip" - CACHE STRING "LEMON PROJECT TEMPLATE version string.") + CACHE STRING "${PROJECT_NAME} version string") ## Do not edit this. PROJECT(${PROJECT_NAME}) @@ -88,7 +88,7 @@ ENABLE_TESTING() -## This auxiliary doxygen files (.dox) should be placed in the 'doc' +## The auxiliary doxygen files (.dox) should be placed in the 'doc' ## subdirectory. The next line includes the CMAKE config of that directory. ADD_SUBDIRECTORY(doc) diff -r 76d160eba8d4 -r efa883909c06 README --- a/README Tue Jun 02 16:27:06 2009 +0100 +++ b/README Tue Jun 16 18:47:21 2009 +0200 @@ -9,8 +9,8 @@ $ cd myproject As you probably want to use LEMON in your project, you will need it -too. For this you have to options. You can either install is somewhere -or use a local copy of lemon dedicated to your project. This later +too. For this you have to options. You can either install it somewhere +or use a local copy of LEMON dedicated to your project. This later option is especially usefull if you also modify/develop LEMON along with your project, or want to use a specific version. @@ -23,7 +23,7 @@ Use LEMON as a subproject. - Just simply coping the lemon source code into the 'lemon' subdir + Just simply copying the LEMON source code into the 'lemon' subdir will do the job. Namely, you can either extract a release tarball $ wget http://lemon.cs.elte.hu/pub/sources/lemon-1.1.tar.gz @@ -40,6 +40,7 @@ $ cd build $ cmake-gui .. + Setup Your Own Project ======================