summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL32
1 files changed, 9 insertions, 23 deletions
diff --git a/INSTALL b/INSTALL
index 3146eb72d..e8fa0760b 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,26 +1,12 @@
-Polkit-tqt's build system uses cmake.
+Basic Installation
+==================
-So to compile Polkit-tqt first create a build dir
+Polkit-tqt relies on cmake to build.
- mkdir build
- cd build
+Here are suggested default options:
-then run cmake:
-
- cmake ..
-
-(a typical cmake option that is often used is: -DCMAKE_INSTALL_PREFIX=<prefix>)
-
-cmake then presents a configuration summary. At this point you may
-want to install missing dependancies (if you do, remove the CMakeCache.txt)
-and run cmake again.
-
-Finally build Polkit-tqt:
-
- make
-
-And install it (in most cases root privileges are required):
-
- make install
-
-That's all :)
+ -DCMAKE_BUILD_TYPE=RelWithDebInfo \
+ -DCMAKE_VERBOSE_MAKEFILE="ON" \
+ -DCMAKE_SKIP_RPATH="OFF" \
+ -DBUILD_ALL="ON" \
+ -DWITH_ALL_OPTIONS="ON"