sarah-walker-pcem / pcem

PCem
http://pcem-emulator.co.uk
GNU General Public License v2.0
1.52k stars 208 forks source link

Instructions for building the source on Ubuntu #Feature #148

Open bartman081523 opened 2 years ago

bartman081523 commented 2 years ago
sudo apt install libwxgtk3.0-gtk3-dev libopenal-dev libsdl2-dev libpcap-dev build-essential cmake ninja-build git
git clone https://github.com/sarah-walker-pcem/pcem
cd pcem
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release .
ninja
./src/pcem
andreyfedoseev commented 2 years ago

@bartman081523

Installing libwxgtk3.0-gtk3-dev is enough, it will install all necessary dependencies for wxWidgets. There's no need to add an external repository for that.

Also, libpcap-dev is required to enable networking.

bartman081523 commented 2 years ago

@andreyfedoseev thanks