Braziliana / T_TApe

T_TApe

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.



Dependency instalation script

#!/bin/bash

# Update package lists
sudo apt update

# Install required packages
sudo apt install -y libudev-dev xorg-dev libglu1-mesa-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxkbcommon-dev libwayland-dev git cmake g++ gcc libinput-dev libsoil-dev nlohmann-json3-dev


# Clone GLFW from GitHub
git clone https://github.com/glfw/glfw.git

# Navigate to the GLFW directory
cd glfw

# Create build directory
mkdir build

# Navigate to the build directory
cd build

# Run CMake
cmake ..

# Build GLFW
make

# Install GLFW
sudo make install

# Navigate back to the parent directory
cd ../..

# Remove the GLFW directory
rm -rf glfw

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 install -y libudev-dev xorg-dev libglu1-mesa-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev libxkbcommon-dev libwayland-dev git cmake g++ gcc libinput-dev libsoil-dev nlohmann-json3-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 sudo ./Apex

7. Menu key

  • Insert

About

T_TApe

License:MIT License


Languages

Language:C++ 88.9%Language:C 11.1%Language:CMake 0.1%Language:GDB 0.0%Language:Shell 0.0%