AMD Radeon Pro SSG Player

Prerequisites: 
	- AMD Radeon Pro SSG

	- AMD-GPUPRO Driver
		- Follow instructions on http://support.amd.com/en-us/kb-articles/Pages/AMD-Radeon-GPU-PRO-Linux-Beta-Driver%E2%80%93Release-Notes.aspx
	- g++
		- Ubuntu: Preinstalled
		- RHEL: $ yum install -y gcc-c++
	- rocm-amdgpu-pro
		- Ubuntu: $ apt install -y rocm-amdgpu-pro
		- RHEL: $ yum install -y rocm-amdgpu-pro
	- ROCM
		- Ubuntu:
			- For Debian based systems, configure the repository like so:
				$ wget -qO - http://repo.radeon.com/rocm/apt/debian/rocm.gpg.key | sudo apt-key add -
				$ sudo sh -c 'echo deb [arch=amd64] http://repo.radeon.com/rocm/apt/debian/ xenial main > /etc/apt/sources.list.d/rocm.list'
				$ sudo apt-get update
				$ sudo apt-get install rocm-opencl-dev 
		- RHEL:
			- A dnf (yum) repository is also available for installion of rpm package. To configure your system to use the ROCm repository:
				- Create the file /etc/yum.respos.d/rocm.repo with the following contents:
					[remote]
					name=ROCm Repo
					baseurl=http://repo.radeon.com/rocm/yum/rpm/
					enabled=1
					gpgcheck=0

				- Execute the following commands:
					$ sudo yum clean all
					$ sudo yum install -y rocm-opencl-devel


	- freeglut
		- Ubuntu: $ apt install -y freeglut3-dev
		- RHEL: $ yum install -y freeglut-devel

	- libblkid
		- Ubuntu: $ apt install -y libblkid-dev
		- RHEL: $ yum install -y libblkid-devel


	- libXmu/libXi
		- Ubuntu: $ apt install -y libxmu-dev libxi-dev
		- RHEL: $ yum install -y libXmu-devel libXi-devel

	- libGL
		- Ubuntu: Preinstalled
		- RHEL: $ yum install -y libGL-devel

	- mesa-libGL
		- Ubuntu: Preinstalled
		- RHEL: $ yum install -y mesa-libGL-devel

	- libX11
		- Ubuntu: $ apt install libx11-dev
		- RHEL: $ yum install libX11-devel

	- glew >= 2.1.0
		- Ubuntu: $ apt install -y libglew-dev
		- RHEL: The provided package in the RHEL repos is outdated, follow the installation instructions located at http://glew.sourceforge.net/

Compilation:
	Run 'make debug' or 'make release' inside the Linux/ directory. A dist folder will be created, the executables will be built inside there. Running the AMD Radeon Pro SSG Player with no arguments will show the help menu.

