This is an automated email from the ASF dual-hosted git repository. pnoltes pushed a commit to branch feature/update_build_documention in repository https://gitbox.apache.org/repos/asf/celix.git
commit 0f9eb92fb3b058baf67362b0aa938d0472ae6a0e Author: Pepijn Noltes <[email protected]> AuthorDate: Thu May 7 18:33:50 2020 +0200 Update build documentation for Ubuntu. The used FetchContent CMake commands requires cmake 3.11+ --- documents/building/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/documents/building/README.md b/documents/building/README.md index 517198e..7ee621f 100644 --- a/documents/building/README.md +++ b/documents/building/README.md @@ -66,6 +66,11 @@ sudo apt-get install -yq --no-install-recommends \ #required if the ENABLE_TESTING option is enabled sudo apt-get install -yq --no-install-recommends \ libcpputest-dev + +#For testing gtest is also used. This is fetched using a cmake 3.11+ feature, +# which is newer that intalled under Ubuntu 18. +#Use snap to install the latest cmake version +snap install --classic cmake ``` For Fedora based systems (dnf), the following command should work:
