Merge pull request #2 from Real96/master

Added Linux instructions to README.md file
This commit is contained in:
martravi 2022-11-08 16:11:31 +01:00 committed by GitHub
commit 5b6386e94b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 2 deletions

View File

@ -1,4 +1,16 @@
# wiiqt
collection of wii-related Qt/C++ stuff
Collection of wii-related Qt/C++ stuff
Building requires Qt 4 (4.7 or newer).
### Usage - Linux
1) `sudo add-apt-repository ppa:rock-core/qt4 -y`
2) `sudo apt-get install libqtgui4`
3) `./executable_name`
### Building - Linux
1) `sudo add-apt-repository ppa:rock-core/qt4 -y`
2) `sudo apt install qt4-dev-tools libqt4-dev libqtcore4 libqtgui4 g++ -y`
3) `cd app_path`
4) `qmake -qt=qt4 file_name.pro`
5) `make -f Makefile`