Three new quotes.
[gromacs.git] / share / template / README
blob0a75e9b6029b39a72ff59f6c7a481449ba92cac0
1 Once installed, this directory contains CMakelist.txt,
2 Makefile.pkg and a small program that you could use as
3 a template when writing your own analysis software.
4 Further explanation for the template code can be found
5 in the Doxygen documentation (link to the latest development
6 version):
7   <http://jenkins.gromacs.org/job/Documentation_Gerrit_Nightly/javadoc/doxygen/html-user/page_analysistemplate.xhtml>
9 The CMakelist.txt can be used together with cmake to
10 build the template program:
11 $ source /path/to/GMXRC
12 $ cmake /path/to/template
13 Alternatively, setting CMAKE_PREFIX_PATH will direct cmake
14 to find a particular GROMACS installation.
16 The Makefile.pkg can be used if cmake is unavailable. It
17 makes use of pkg-config to build the template program:
18 $ source /path/to/GMXRC
19 $ make -f Makefile.pkg
21 You will need to make sure that you use the same C++ compiler
22 and C++ Standard Library as the one that was used for compiling
23 GROMACS.
24 See the Doxygen documentation for using GROMACS as a library for
25 more details about the build system used to build the template, as
26 well as its limitations (link to the latest development version):
27   <http://jenkins.gromacs.org/job/Documentation_Nightly_master/javadoc/doxygen/html-user/page_usinglibrary.xhtml>
29 ----------------------------------------------------------
31 If you are reading this in the distribution directory,
32 remember that CMakelist.txt.template will be renamed to
33 CMakelist.txt during the installation.