summaryrefslogtreecommitdiff
path: root/INSTALL.txt
diff options
context:
space:
mode:
authorJeremiah C. Foster <jeremiah.foster@pelagicore.com>2011-04-13 11:21:29 +0200
committerJeremiah C. Foster <jeremiah.foster@pelagicore.com>2011-04-13 11:21:29 +0200
commit4861ad1eb68cd4650b07d99826111edf5da4f307 (patch)
tree72ee8bc246a532d07f7b1e7754ecb85dedd6281c /INSTALL.txt
parentf357c196df036fc46a3c730e1f4532743e3e3ed5 (diff)
downloadDLT-daemon-4861ad1eb68cd4650b07d99826111edf5da4f307.tar.gz
Added INSTALL.txt to describe building and installation.
Diffstat (limited to 'INSTALL.txt')
-rw-r--r--INSTALL.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/INSTALL.txt b/INSTALL.txt
new file mode 100644
index 0000000..1ffb1e9
--- /dev/null
+++ b/INSTALL.txt
@@ -0,0 +1,20 @@
+Instructions for installing this software
+---
+
+This software uses cmake as its build tool. To build and install the
+DLT daemon, follow these steps;
+
+1. Create a build directory;
+
+$ mkdir build
+
+2. Move into that directory and call cmake;
+
+$ cd build && cmake ../
+
+3. The run make and make install;
+
+$ make
+# make install
+
+Note you'll have to be root to run make install, or do 'sudo make install'.