Added linux installation

This commit is contained in:
Dmitriy Shishkov 2022-06-10 07:23:00 +03:00
parent 995a00cbbd
commit 3743f91f3c
No known key found for this signature in database
GPG Key ID: 26720CB2A9608C97
2 changed files with 32 additions and 1 deletions

View File

@ -1,4 +1,3 @@
# CXX = $(shell wx-config --cxx)
CXX = clang++
PROGRAM = wxMahjong
@ -19,3 +18,8 @@ $(BDIR):
clean:
rm -f $(BDIR)/*.o $(PROGRAM)
install:
mkdir -p ~/.wxMahjong/
cp resources/* -r ~/.wxMahjong/
cp build/wxMahjong /usr/local/bin/

View File

@ -5,3 +5,30 @@
</p>
Mahjong (solitare) game, written with C++ and [wxWidgets](https://www.wxwidgets.org)
## Installation instructions:
Install clang, make and wxWidgets library. e.g:
```bash
sudo pacman -S clang make wxgtk3
```
Build project:
```bash
make
```
Add wxWidgets libs to ld path:
```bash
echo '/usr/local/lib' | tee -a /etc/ld.so.conf
ldconfig
```
Install app:
```bash
make install
```