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 15:46:52 +0900
commit8ebbbc50437c45c0f32c5331ac0627924326059c (patch)
tree70f75af7ce6ffa9586e40aee15e946a1589c7355 /INSTALL
parent21b7da13e29c69156d1fb65f354b874916b7ca84 (diff)
downloadtdeio-locate-8ebbbc50437c45c0f32c5331ac0627924326059c.tar.gz
tdeio-locate-8ebbbc50437c45c0f32c5331ac0627924326059c.zip
Drop autotools support.
Add README.md and update INSTALL files. Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL29
1 files changed, 13 insertions, 16 deletions
diff --git a/INSTALL b/INSTALL
index 890226d..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 \
- -DTQTDIR=/opt/qt \
- -DTQT_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"