forked from AmatCoder/mednaffe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
36 lines (19 loc) · 819 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
## Mednaffe
Mednaffe is a front-end (GUI) for mednafen emulator.
Its main features are:
* It is written in C language.
* Available for Linux and Windows.
* The only dependency is GTK+3.
* GPLv3 licensed.
## Building mednaffe on Linux
To build mednaffe you need GTK+3 (3.16 or above) development libraries.
* Run the "configure" script here, e.g.:
``./configure``
* Then build with:
``make``
* To install it then do:
``make install``
*Note: You do not need to install mednaffe, it can be run from /src folder.*
## Rebuilding resources.c for GUI changes
If you make changes to the ui files inside the /share folder, you need to rebuild resources.c before compiling:
``glib-compile-resources --sourcedir=./share/glade --target=./src/resources.c --generate-source ./share/glade/resources.xml``