mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
6881bc3814
Annotations. The branches and tags directory are empty, since I couldn't svnadmin import a repostitory dump. Many earlier versions exist, though, and if you want the full archive, just let me know and I'll send you the svnadmin dump of my full C++ Annotations archive. Frank B. Brokken <f.b.brokken@rug.nl> git-svn-id: https://cppannotations.svn.sourceforge.net/svnroot/cppannotations/trunk@3 f6dd340e-d3f9-0310-b409-bdd246841980
26 lines
861 B
Text
26 lines
861 B
Text
string BASE;
|
|
|
|
// BASE=is the directory below which ALL yodl files will be stored.
|
|
|
|
// For an operational non-Debian installation, you probably must be
|
|
// `root', and BASE "/usr" or BASE "/usr/local" is suggested (see
|
|
// below). `BASE' itself is not used outside of this file, so feel free to
|
|
// define BIN, SKEL, MAN and DOC (below) in any which way you like.
|
|
|
|
string DOC;
|
|
// DOC is the directory in which all standard documentation will be stored
|
|
// in this directory the non-development related information is stored. It
|
|
// is not used if not defined (or defined empty)
|
|
|
|
string MAN;
|
|
// MAN is the directory in which the manual pages will be stored
|
|
// They are stored below man7
|
|
|
|
|
|
void setLocations()
|
|
{
|
|
BASE = "/usr";
|
|
|
|
DOC = BASE + "/share/doc/cpp-annotations";
|
|
MAN = BASE + "/share/man";
|
|
}
|