From e0c8e1558f6fd41ebd5a9b6919d76ef324b2d402 Mon Sep 17 00:00:00 2001 From: Robert Tari Date: Wed, 9 Aug 2023 15:52:26 +0200 Subject: Add info and build instructions fixes https://github.com/AyatanaIndicators/libayatana-appindicator/issues/46 --- INSTALL.md | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 INSTALL.md (limited to 'INSTALL.md') diff --git a/INSTALL.md b/INSTALL.md new file mode 100644 index 0000000..64921de --- /dev/null +++ b/INSTALL.md @@ -0,0 +1,62 @@ +# Build and installation instructions + +## Compile-time build dependencies + + - cmake + - cmake-extras + - at-spi2-core + - gobject-introspection + - intltool + - gtk-doc + - libxml2 + - vala + - mono + - glib2 + - gtk3 + - gtk3-docs + - gtk-sharp-3 + - libayatana-indicator + - libdbusmenu-gtk3 + - libdbusmenu-glib + - libgirepository + - dbus-test-runner - **For testing** + - xorg-server-xvfb - **For testing** + - gcovr - **For coverage** + - lcov - **For coverage** + +## For end-users and packagers + +``` +cd libayatana-appindicator +mkdir build +cd build +cmake .. -DENABLE_GTKDOC=ON +make +sudo make install +``` + +**The install prefix defaults to `/usr`, change it with `-DCMAKE_INSTALL_PREFIX=/some/path`** +
+**The libexec prefix defaults to `/libexec`, change it with `-DCMAKE_INSTALL_LIBEXECDIR=lib`** + +## For testers - unit tests only + +``` +cd libayatana-appindicator +mkdir build +cd build +cmake .. -DENABLE_GTKDOC=ON -DENABLE_WERROR=ON -DENABLE_TESTS=ON +make +make test +``` + +## For testers - both unit tests and code coverage + +``` +cd libayatana-appindicator +mkdir build +cd build +cmake .. -DENABLE_GTKDOC=ON -DENABLE_WERROR=ON -DENABLE_COVERAGE=ON +make +make coverage +``` -- cgit v1.2.3