This repository has been archived by the owner on May 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
readme.txt
75 lines (54 loc) · 3.05 KB
/
readme.txt
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
Monkey Studio IDE is an Open Source cross platform IDE written with C++/Qt4.
It's licensed in GNU GPL2 & up.
http://monkeystudio.org
NOTICE: Commercial reuse, please inform us before reusing Monkey Studio IDE.
*******
WARNING: Monkey Studio require at least Qt 4.7.0 MINIMUM !
********
Before building, you should know about some rules if you are unix/linux users.
By default monkey studio will install itself in /usr/local.
If you want to change this you should do these build step ( assuming you want to install in /usr ) :
* cd to root sources of monkey studio
* qmake -r prefix=/usr
* make
* qmake -r prefix=/usr
* sudo make install
You now have a full working copy of monkey for your unix/linux box.
If you have trouble when monkey starting ( because you already use old version of monkey studio ), you should rename the file ~/.Monkey Studio/Monkey Studio.ini and scripts-XXX and restart monkey studio.
If trouble persists, please inform us.
How to build Monkey Studio:
===========================
With MinGW/Windows:
* Open a console, and go to the sources directory.
* qmake -r && mingw32-make && mingw32-make install
* The install will copy everything needed to create a stand alone copy folder of MkS.
With MSVC/Windows:
* Open a console, and go to the sources directory.
* qmake -r && nmake && nmake install // possible you will need to set, for wich compiler to generate makefile like : qmake -spec win32-msvc2005
* The install will copy everything needed to create a stand alone copy folder of MkS.
With Linux/*Nix:
* Open a shell, and go to the sources directory.
* qmake -r && make // some distros use qmake-qt4 for qmake of Qt 4
With Mac OS X:
* Open a terminal, and go to the sources directory.
* qmake -r -spec macx-g++ && make aa make install
* The install will copy everything needed to create a stand alone copy bundle of MkS.
How to execute Monkey Studio:
=============================
* Once you have build monkeystudio you need install resources executing this command : $$MAKE install ( replace $$MAKE by make/mingw32-make/nmake according to your platform ).
* Once you have installed resources, you now have a full monkeystudio copy in your bin folder by default on windows/mac, and in /usr/local for unix/linux.
You may require admin acces when using $$MAKE install.
For unix-like, simply use a sudo, for windows, you need to have admin access.
Known Problems:
* MSVC 6 can't build Monkey Studio 2, and will probably never ( except if someone is able to send us patches ).
* For any problems, please contact us on the forums at : http://monkeystudio.org/forum or on our irc channel, irc://irc.freenode.net/monkeystudio
* You can report bugs using our webissues server or launchpad ( see About dialog for more infos )
How to generate Doxygen documentation:
======================================
You should execute command
doxygen doxygen.config
from root dirrectory of source archive
(dirrectory, where config storing)
Directory 'doc/html' with documentation will appear.
Azevedo Filipe & The Monkey Studio Team,
--EOF