diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2022-02-01 13:20:22 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2022-02-02 15:24:14 +0100 |
commit | 60298e927e184c09b51ee7d91c40d79e3bb08a9a (patch) | |
tree | f0fce8153158432840f36397ce4b016559e6caf8 /INSTALL | |
parent | 0f1756bea7b7e7f0446aad6f1f8028b0cdf57244 (diff) | |
download | twin-style-crystal-60298e927e184c09b51ee7d91c40d79e3bb08a9a.tar.gz twin-style-crystal-60298e927e184c09b51ee7d91c40d79e3bb08a9a.zip |
Drop automake build support.r14.0.12
Rework the README and INSTALL files.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 0046c9a50823acc26d9c8c57d28ed0c0bd87c4a2)
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 30 |
1 files changed, 13 insertions, 17 deletions
@@ -1,20 +1,16 @@ --- INSTALL ----------------------------------- +Basic Installation +================== -Basic Installation (from the console): - - Step 1 - $ ./configure --prefix=`tde-config --prefix` - - Step 2 - $ make - - Step 3 (as root) - # make install +twin-style-crystal relies on cmake to build. -If configure fails, check that you have both -the Qt and KDE development headers installed. +Here are suggested default options: -You need at least KDE 3.2 and QT 3.3. - -Debian note: You may need to append ---with-qt-includes=/usr/include/qt3 -to the configure line. - -----------------------------------------------
\ No newline at end of file + -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" |