From af19ee98503cd89742f4e3d55b6cb65f4bd2e2a5 Mon Sep 17 00:00:00 2001 From: Alexander Bialowas Date: Mon, 30 Dec 2019 13:58:40 +0100 Subject: [PATCH 1/2] Update some text info --- BUILD_LINUX.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/BUILD_LINUX.md b/BUILD_LINUX.md index 0be34cf90a..323ad4c1ed 100644 --- a/BUILD_LINUX.md +++ b/BUILD_LINUX.md @@ -2,7 +2,7 @@ Please read the [general build guide](BUILD.md) for information on dependencies required for all platforms. Only Linux specific instructions are found in this file. -## Ubuntu 16.04/18.04 specific build guide +## Ubuntu 16.04/18.04/Mint 19 Tara specific build guide ### Ubuntu 16.04 only Add the following line to *.bash_profile* `export QT_QPA_FONTDIR=/usr/share/fonts/truetype/dejavu/` @@ -33,7 +33,7 @@ Verify by g++ --version ```bash sudo apt-get install cmake -y ``` -Verify by git --version +Verify by cmake --version 1. *Ubuntu 16.04* cmake ```bash wget https://cmake.org/files/v3.14/cmake-3.14.2-Linux-x86_64.sh @@ -82,20 +82,21 @@ git clone https://github.com/kasenvr/project-athena.git To compile a RELEASE version checkout the tag you need getting a list of all tags: ```bash git fetch -a -git tags +git tag ``` Then checkout last tag with: ```bash -git checkout tags/v0.79.0 +git checkout tag/1.0 ``` ### Compiling Create the build directory: ```bash -mkdir -p hifi/build -cd hifi/build +cd project-athena +mkdir build +cd build ``` Prepare makefiles: From 7584429e77b7e7c427670e695dbf9c0e7fc2d621 Mon Sep 17 00:00:00 2001 From: Marcus Llewellyn Date: Sun, 12 Jan 2020 13:47:40 -0600 Subject: [PATCH 2/2] Remove reference to Mint --- BUILD_LINUX.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD_LINUX.md b/BUILD_LINUX.md index 323ad4c1ed..3b072ef86d 100644 --- a/BUILD_LINUX.md +++ b/BUILD_LINUX.md @@ -2,7 +2,7 @@ Please read the [general build guide](BUILD.md) for information on dependencies required for all platforms. Only Linux specific instructions are found in this file. -## Ubuntu 16.04/18.04/Mint 19 Tara specific build guide +## Ubuntu 16.04/18.04 specific build guide ### Ubuntu 16.04 only Add the following line to *.bash_profile* `export QT_QPA_FONTDIR=/usr/share/fonts/truetype/dejavu/`