diff options
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" |