From a7b4d8efbf5526887543d9947ab0de722dc85558 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Fri, 27 Sep 2019 08:54:24 -0400 Subject: [PATCH] Add Linux build dependencies. --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 29bde30..66dd18c 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,16 @@ pacman -S mingw-w64-x86_64-premake brew install premake ``` +### Ubuntu 16.04+ +```bash +sudo apt install premake4 +``` + +### Arch Linux +```bash +sudo pacman -S premake +``` + ## Adding a script engine - Add your scripting language library to the build system so it builds with `make dep`, following the Duktape example in the `Makefile`.