From 34d8356058cf0215388ec806e1ab1c8e4c0acd01 Mon Sep 17 00:00:00 2001
From: Alexis Nasr <alexis.nasr@lif.univ-mrs.fr>
Date: Mon, 27 Jun 2016 12:05:10 -0400
Subject: [PATCH] added INSTALL file

---
 INSTALL | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 INSTALL

diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..8306709
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,19 @@
+CMAKE install procedure
+=======================
+
+The basic procedure to build and install macaon from sources is the following.
+- Create a build directory.
+  If the sources are in the macaon-X.X.X/ directory:
+    cd macaon-X.X.X
+    mkdir build
+    cd build
+- Launch the cmake command:
+    cmake ..
+
+  If you want to install macaon locally, you can specify the install path with :
+    cmake -DCMAKE_INSTALL_PREFIX:PATH=/absolute/path/to/macaon_install_dir
+
+- Build the sources with:
+    make
+- Install macaon
+    make install
-- 
GitLab