diff options
author | gregory guy <[email protected]> | 2020-06-19 17:12:06 +0200 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-06-20 14:01:23 +0900 |
commit | 7032f572130b6dab1f76701fd019775984d23145 (patch) | |
tree | dc6c2045c30db60f1c1f4463f117ea602ce22efb /INSTALL | |
parent | 47f71df1d84a8f9ff965cf2e6965ea57261296f4 (diff) | |
download | kdbusnotification-7032f572130b6dab1f76701fd019775984d23145.tar.gz kdbusnotification-7032f572130b6dab1f76701fd019775984d23145.zip |
Drop automake build support.
Add basic cmake build instructions.
Write basic README file.
Some cosmetics.
Signed-off-by: gregory guy <[email protected]>
(cherry picked from commit eb8eab39794cc4a7fbb11b66a4f8d2d6f4d868f2)
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -0,0 +1,25 @@ +Basic Installation +================== + +kdbusnotification relies on cmake to build. + +Here are suggested default options: + + -DCMAKE_INSTALL_PREFIX="/opt/trinity" \ + -DCONFIG_INSTALL_DIR="/etc/trinity" \ + -DSYSCONF_INSTALL_DIR="/etc" \ + -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" + + +Requirement: +============ + - dbus-binding-tool (executable) + - dbus-1 + - dbus-glib-1 + - gtk2.0 + - glib2.0 |