1.1 --- a/CMakeLists.txt Tue Jun 02 16:27:06 2009 +0100
1.2 +++ b/CMakeLists.txt Tue Jun 16 18:47:21 2009 +0200
1.3 @@ -5,12 +5,12 @@
1.4 SET(PROJECT_NAME "LEMON-PROJECT-TEMPLATE")
1.5
1.6 ## Change 'hg-tip' to the current version number of your project if you wish.
1.7 -## Optionally, you can leave it as is as set PROJECT_VERSION from the cmake-gui
1.8 -## when you make a release.
1.9 +## Optionally, you can leave it as is and set PROJECT_VERSION from
1.10 +## the cmake-gui when you make a release.
1.11 ## The last parameter is a help string displayed by CMAKE.
1.12
1.13 SET(PROJECT_VERSION "hg-tip"
1.14 - CACHE STRING "LEMON PROJECT TEMPLATE version string.")
1.15 + CACHE STRING "${PROJECT_NAME} version string")
1.16
1.17 ## Do not edit this.
1.18 PROJECT(${PROJECT_NAME})
1.19 @@ -88,7 +88,7 @@
1.20
1.21 ENABLE_TESTING()
1.22
1.23 -## This auxiliary doxygen files (.dox) should be placed in the 'doc'
1.24 +## The auxiliary doxygen files (.dox) should be placed in the 'doc'
1.25 ## subdirectory. The next line includes the CMAKE config of that directory.
1.26
1.27 ADD_SUBDIRECTORY(doc)
2.1 --- a/README Tue Jun 02 16:27:06 2009 +0100
2.2 +++ b/README Tue Jun 16 18:47:21 2009 +0200
2.3 @@ -9,8 +9,8 @@
2.4 $ cd myproject
2.5
2.6 As you probably want to use LEMON in your project, you will need it
2.7 -too. For this you have to options. You can either install is somewhere
2.8 -or use a local copy of lemon dedicated to your project. This later
2.9 +too. For this you have to options. You can either install it somewhere
2.10 +or use a local copy of LEMON dedicated to your project. This later
2.11 option is especially usefull if you also modify/develop LEMON along
2.12 with your project, or want to use a specific version.
2.13
2.14 @@ -23,7 +23,7 @@
2.15
2.16 Use LEMON as a subproject.
2.17
2.18 - Just simply coping the lemon source code into the 'lemon' subdir
2.19 + Just simply copying the LEMON source code into the 'lemon' subdir
2.20 will do the job. Namely, you can either extract a release tarball
2.21
2.22 $ wget http://lemon.cs.elte.hu/pub/sources/lemon-1.1.tar.gz
2.23 @@ -40,6 +40,7 @@
2.24 $ cd build
2.25 $ cmake-gui ..
2.26
2.27 +
2.28 Setup Your Own Project
2.29 ======================
2.30