summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2019-11-01 11:46:21 +0100
committergregory guy <gregory-tde@laposte.net>2019-11-01 11:46:21 +0100
commit873d0e4138a1569d2a8dfa061d0338b6d017dd3b (patch)
tree330519cff76d1948c74f7674793cdc1399fee3d6 /INSTALL
parent620d83c4efc5ffcbf89d941410dbddda4daff279 (diff)
downloadknights-873d0e4138a1569d2a8dfa061d0338b6d017dd3b.tar.gz
knights-873d0e4138a1569d2a8dfa061d0338b6d017dd3b.zip
Drop automake build support.
Add basic cmake build instructions in the INSTALL file. Rework of README file and the help page. The History file has been removed, the content added to the ChangeLog file. The file CreatingThemes has moved in the doc folder. Cosmetic changes in CMakeLists.txt . Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL42
1 files changed, 16 insertions, 26 deletions
diff --git a/INSTALL b/INSTALL
index 3c9ac2c..cd51b05 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,26 +1,16 @@
-Dependencies:
--------------
-
-- Qt 3.x
-- KDE 3.x
-- Autoconf 2.5
-- Automake 1.6
-
-You'll also need to have your $TDEDIR environment variable set correctly.
-
-
-Installing from Tarball Distribution:
--------------------------------------
-
- Type: ./configure
- make
- make install
-
-
-Installing from CVS:
---------------------
-
- Type: make -f Makefile.dist
- ./configure
- make
- make install
+Basic Installation
+==================
+
+Knights relies on cmake to build.
+
+Here are suggested default options:
+
+ -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"