mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-12 00:06:45 +00:00
14 lines
394 B
Bash
Executable File
14 lines
394 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Tested on Ubuntu 16.04.
|
|
sudo aptitude update
|
|
# Ubuntu 14.04: glfw3 not present in repos, only glfw 2.
|
|
# Must compile yourself, good luck: http://stackoverflow.com/questions/17768008/how-to-build-install-glfw-3-and-use-it-in-a-linux-project
|
|
sudo aptitude install \
|
|
freeglut3-dev \
|
|
libgles2-mesa-dev \
|
|
libglew-dev \
|
|
libglfw3-dev \
|
|
libopencv-dev \
|
|
libv4l-dev \
|
|
;
|