Adding TGUI to the dependencies of the CI

This commit is contained in:
AnonymusRaccoon
2020-02-14 18:27:42 +01:00
parent 9d614a6e0a
commit c8e91cb3f4
2 changed files with 14 additions and 0 deletions
+8
View File
@@ -14,6 +14,14 @@ jobs:
- name: Install the SFML.
run: sudo apt-get update &&
sudo apt-get install --yes libsfml-dev
- name: Install TGUI.
run: |
git clone https://github.com/texus/TGUI -b 0.8 /tmp/tgui
cd /tmp/tgui
mkdir build
cd build
cmake ..
make -j 4 && sudo make install
- name: Build Makefile with CMake
run: mkdir -p build && cd build && cmake ..
- name: Build with Makefile