summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorgregory guy <[email protected]>2019-12-31 14:28:05 +0100
committerMichele Calgaro <[email protected]>2020-01-02 00:25:49 +0900
commit39822b9bec4467b33955916ce10ecc64e5081edd (patch)
tree53b2b99cac17c8ab06afe3c689ce7e356fd93484 /INSTALL
parenta73f6db940adbd60d1df65b5060bbcf67c867361 (diff)
downloadkpicosim-39822b9bec4467b33955916ce10ecc64e5081edd.tar.gz
kpicosim-39822b9bec4467b33955916ce10ecc64e5081edd.zip
Drop automake build support.
Add basic build instructions to the INSTALL file. Remove empty file NEWS. Rework of the README and help page. Signed-off-by: gregory guy <[email protected]> (cherry picked from commit 55922fcee851967d9f06fa359b085bcbc00dfc75)
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL42
1 files changed, 13 insertions, 29 deletions
diff --git a/INSTALL b/INSTALL
index a3149f5..1ec351a 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,32 +1,16 @@
+Basic Installation
+==================
-Building kpicosim from source:
-====================
- Extract the sources and change directory
- $ tar zxvf kpicosim-0.6.tar.gz
- $ cd kpicosim-0.6
+Kpicosim relies on cmake to build.
- Then run configure
- $ ./configure
-
- After that, compile the source:
- $ make
-
- And as last install the program (make sure you are root)
- # make install
-
- Now the program kpicosim is installed on your system. Just run
- $ kpicosim
-
-
-Building under Debian:
-======================
- Extract the sources and change into the new directory
- $ tar xvzf kpicosim-0.6.tar.gz
- $ cd kpicosim-0.6
-
- Build the package:
- $ dpkg-buildpackage -rfakeroot -us -b
+Here are suggested default options:
- Run 'dpkg -i ../kpicosim*.deb' as root.
-
-
+ -DCMAKE_INSTALL_PREFIX="/opt/trinity" \
+ -DCONFIG_INSTALL_DIR="/etc/trinity" \
+ -DSYSCONF_INSTALL_DIR="/etc/trinity" \
+ -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" \
+ -DCMAKE_BUILD_TYPE=RelWithDebInfo \
+ -DCMAKE_VERBOSE_MAKEFILE="ON" \
+ -DCMAKE_SKIP_RPATH="OFF" \
+ -DBUILD_ALL="ON" \
+ -DWITH_ALL_OPTIONS="ON"