added Linux build instructions

This commit is contained in:
Vadim Grigoruk 2017-09-29 09:49:41 +03:00 committed by GitHub
parent 0299f41f0a
commit b584730e34
1 changed files with 16 additions and 6 deletions

View File

@ -1,5 +1,4 @@
TIC-80 issues tracker and wiki
=======
# TIC-80 issues tracker and wiki
[Discord chat](https://discord.gg/DkD73dP)
@ -9,8 +8,10 @@ Documentation is available in the [wiki](https://github.com/nesbox/tic.computer/
Thanks!
Building with Visual Studio 2015
=======
# Building instructions
## Windows
### with Visual Studio 2015
- install Visual Studio 2015
- install GIT
- run following commands in `cmd`
@ -18,7 +19,16 @@ Building with Visual Studio 2015
mkdir tic
cd tic
git clone https://github.com/nesbox/3rd-party
git clone https://github.com/nesbox/TIC-80.git
git clone https://github.com/nesbox/TIC-80
```
- open `TIC-80\build\windows\tic\tic.sln` and run build
- open `TIC-80\build\windows\tic\tic.sln` and build
- enjoy :)
## Linux
run the following commands in the Terminal
```
sudo apt-get install git build-essential libgtk-3-dev
git clone https://github.com/nesbox/TIC-80
cd TIC-80
make linux32 (or linux64/arm depending on your system)
```