summaryrefslogtreecommitdiffstats
path: root/INSTALL
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2021-12-09 23:27:00 +0900
committerMichele Calgaro <[email protected]>2021-12-09 23:27:00 +0900
commit416bed9bc124e24cc1351c7d8e5810ca7570a023 (patch)
treefbb25a82365c24f80874fe0d7190533b27a4df3b /INSTALL
parent855818127b02c367fb187e67b9bb9b229b916304 (diff)
downloadpolkit-tqt-416bed9bc124e24cc1351c7d8e5810ca7570a023.tar.gz
polkit-tqt-416bed9bc124e24cc1351c7d8e5810ca7570a023.zip
Updated documentation and clean up.
Signed-off-by: Michele Calgaro <[email protected]>
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"