diff options
author | Michele Calgaro <[email protected]> | 2022-08-27 15:29:28 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2022-08-27 15:46:52 +0900 |
commit | 8ebbbc50437c45c0f32c5331ac0627924326059c (patch) | |
tree | 70f75af7ce6ffa9586e40aee15e946a1589c7355 /INSTALL | |
parent | 21b7da13e29c69156d1fb65f354b874916b7ca84 (diff) | |
download | tdeio-locate-8ebbbc50437c45c0f32c5331ac0627924326059c.tar.gz tdeio-locate-8ebbbc50437c45c0f32c5331ac0627924326059c.zip |
Drop autotools support.
Add README.md and update INSTALL files.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 29 |
1 files changed, 13 insertions, 16 deletions
@@ -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" |