GustavoAle / alk

A calculator written in C++ and Lua C API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


Summary

Build

Windows or Mac

I didn't tested the building on Windows or Mac myself, but it is possible since wxWidgets and Lua C API are both multiplatform

Linux

The prerequisites are wxWidget and Lua C API. It's that simple and can be easily installed with your distro package manager.

Fedora

Prerequisites:

dnf install wxGTK3 wxGTK3-devel lua-devel

Building:

git clone https://github.com/GustavoAle/alk
cd alk
make

Run:

./alk.elf

Ubuntu

Prerequisites:

apt install build-essential libwxgtk3.0-gtk3-dev liblua5.1-dev

Building:

git clone https://github.com/GustavoAle/alk
cd alk
export ALKTARGET=lua51
make

Run:

./alk.elf

About

A calculator written in C++ and Lua C API

License:GNU General Public License v3.0


Languages

Language:C++ 99.7%Language:Makefile 0.3%