-
Notifications
You must be signed in to change notification settings - Fork 28
/
readme.win_cb
76 lines (39 loc) · 2.39 KB
/
readme.win_cb
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
1) installing Codeblocks:
--------------------------------------------------------------------------------
follow the steps here:
http://www.openframeworks.cc/setup/setup/codeblocks
** be sure to follow step e **
download this zip:
http://www.openframeworks.cc/content/files/codeblocks_additions.zip
and add the includes / libs to the corresponding includes / libs folder in mingw.
2) workspaces
--------------------------------------------------------------------------------
In 0.061 we've moved to a "compiled" openframeworks. This means, you should open up the workspace
that comes with each project:
imageSaverExample.cbp
imageSaverExample.workspace <---------- load this
the workspaces load both the imageSaverExample project as well as the openframeworksLib project, and
will recompile the openframeworks library as needed.
a few points:
a) it's easy to open up multiple projects into the workspace. remember to close the workspace before working
with a new project. If you accidently open up other projects into the workspace, just don't save it.
b) within each workspace, it's easy to highlight which project you want to build by clicking it.
choose the "project", ie, imageSaverExample as opposed to the openframeworks lib.
2) if you want to make a new project:
--------------------------------------------------------------------------------
a) copy the folder inside of apps and paste in the same directory
ie (copy "emptyExample" and paste "copy of emptyExample")
b) rename the folder, and inside the folder, rename the .cbp and .workspace
c) open the .cbp file with a text editor. change the occurances of the old name to the new name:
line 5: <Option title="emptyExample" />
line 11: <Option output="bin\emptyExample" prefix_auto="1" extension_auto="1" />
line 18: <Option output="bin\emptyExample_DEBUG" prefix_auto="1" extension_auto="1" />
for example, if I copied emptyexample and wanted to call it "coolExample" would look like:
line 5: <Option title="coolExample" />
line 11: <Option output="bin\coolExample" prefix_auto="1" extension_auto="1" />
line 18: <Option output="bin\coolExample_DEBUG" prefix_auto="1" extension_auto="1" />
in the solution file, change the name of .cbp file:
line 4: <Project filename="emptyExample.cbp" active="1" />
to whatever you've renamed the cbp to.
as always if you have issues, check or post on the forum: openframeworks.cc/forum
have fun!