Skip to content

MidTano/T_TApe

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

T_TApe


Disclaimer: This code is for educational purposes only. It is not intended for use in any games or competitions where it may violate the terms and conditions or be considered unfair to other players. Please use this code responsibly and at your own risk.



1. Install Cinnamon desktop environment on Ubuntu

sudo apt update
sudo apt install cinnamon-desktop-environment
reboot

select cinnamon when you log in

2. Install dependencies

sudo apt update
sudo apt-get install -y libudev-dev
sudo apt install cmake xorg-dev libglu1-mesa-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev

3. remove from /usr/lib/x86_64-linux-gnu/ files starting with libglfw you can run command below. If u get error u can mannualy check if files with name starting with libglfw if not you can go to next step

    sudo rm /usr/lib/x86_64-linux-gnu/libglfw*

4. build glfw

git clone https://github.com/glfw/glfw.git
cd glfw
mkdir build
cd build
cmake ..
make
sudo make install

5. Clone repo

git clone https://github.com/Braziliana/T_TApe.git
cd T_TApe

6. Build and run

using commands

mkdir build
cd build
cmake ..
make
sudo ./T_TApe

or u can use script

  • BuildAndRun.sh - to build and run
  • Run.sh - to run

7. Menu key

  • Insert

About

T_TApe

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 88.4%
  • C 11.6%