mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 19:59:28 +02:00
Update some text info
This commit is contained in:
parent
38761c39d4
commit
af19ee9850
1 changed files with 7 additions and 6 deletions
|
@ -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.
|
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
|
### Ubuntu 16.04 only
|
||||||
Add the following line to *.bash_profile*
|
Add the following line to *.bash_profile*
|
||||||
`export QT_QPA_FONTDIR=/usr/share/fonts/truetype/dejavu/`
|
`export QT_QPA_FONTDIR=/usr/share/fonts/truetype/dejavu/`
|
||||||
|
@ -33,7 +33,7 @@ Verify by g++ --version
|
||||||
```bash
|
```bash
|
||||||
sudo apt-get install cmake -y
|
sudo apt-get install cmake -y
|
||||||
```
|
```
|
||||||
Verify by git --version
|
Verify by cmake --version
|
||||||
1. *Ubuntu 16.04* cmake
|
1. *Ubuntu 16.04* cmake
|
||||||
```bash
|
```bash
|
||||||
wget https://cmake.org/files/v3.14/cmake-3.14.2-Linux-x86_64.sh
|
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:
|
To compile a RELEASE version checkout the tag you need getting a list of all tags:
|
||||||
```bash
|
```bash
|
||||||
git fetch -a
|
git fetch -a
|
||||||
git tags
|
git tag
|
||||||
```
|
```
|
||||||
|
|
||||||
Then checkout last tag with:
|
Then checkout last tag with:
|
||||||
```bash
|
```bash
|
||||||
git checkout tags/v0.79.0
|
git checkout tag/1.0
|
||||||
```
|
```
|
||||||
|
|
||||||
### Compiling
|
### Compiling
|
||||||
|
|
||||||
Create the build directory:
|
Create the build directory:
|
||||||
```bash
|
```bash
|
||||||
mkdir -p hifi/build
|
cd project-athena
|
||||||
cd hifi/build
|
mkdir build
|
||||||
|
cd build
|
||||||
```
|
```
|
||||||
|
|
||||||
Prepare makefiles:
|
Prepare makefiles:
|
||||||
|
|
Loading…
Reference in a new issue