summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2022-08-27 15:29:28 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2022-08-27 21:04:38 +0900
commit5bad37c4e5f4d99b02659728fa1ed09e12ad5d98 (patch)
tree16f63665d765a796363c31c9c37ab55a9ad7f427 /INSTALL
parentdd592dfeab7668d7211ef0b97a2227180119979a (diff)
downloadtdeio-locate-5bad37c4.tar.gz
tdeio-locate-5bad37c4.zip
Drop autotools support.
Add README.md and update INSTALL files. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 8ebbbc50437c45c0f32c5331ac0627924326059c)
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL29
1 files changed, 13 insertions, 16 deletions
diff --git a/INSTALL b/INSTALL
index d6881ba..3c687d6 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,19 +1,16 @@
-This package requires CMake and tdelibs to build
+Basic Installation
+==================
-==================== BUILDING ====================
+tdeio-locate relies on cmake to build.
-mkdir /tmp/tdeio-locate
-cd /tmp/tdeio-locate
+Here are suggested default options:
-cmake <this source directory> \
- -DCMAKE_INSTALL_PREFIX=/opt/trinity \
- -DCMAKE_VERBOSE_MAKEFILE=ON \
- -DWITH_QT3=ON \
- -DQTDIR=/opt/qt \
- -DQT_LIBRARY_DIRS=/opt/qt/lib \
- -DBUILD_ALL=ON
-make VERBOSE=1
-
-================== INSTALLATION ===================
-
-make install
+ -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"