File: INSTALL

package info (click to toggle)
scythestat 1.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,252 kB
  • sloc: cpp: 4,679; ansic: 3,528; sh: 3,456; makefile: 39
file content (20 lines) | stat: -rw-r--r-- 753 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Scythe installs as header-only C++ library.  Users who do not wish to
install Scythe in this way may also compile the Scythe sources
directly into their applications using the SCYTHE_COMPILE_DIRECT
preprocessor flag.

To install in the default system library folder (typicaly /usr/local/lib).
In the current directory, execute the commands (assuming you have root
write privelages):
	$ ./configure
	$ make install

To install in a local library folder (e.g. /home/myhome/lib).  In the
current directory, execute the commands:
  $ ./configure --prefix=/home/myhome
  $ make install

Make sure /home/myhome/lib is in your include path or compile with
-I/home/myhome/lib when installing in a local folder.

Scythe requires gcc 4.4.7 or greater to compile.