Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
basicedeapplication [2013/05/31 12:47] sanel created |
basicedeapplication [2015/10/03 14:54] (current) |
||
---|---|---|---|
Line 47: | Line 47: | ||
#include <FL/Fl.H> | #include <FL/Fl.H> | ||
#include <FL/Fl_Box.H> | #include <FL/Fl_Box.H> | ||
+ | #include <edelib/Ede.h> | ||
#include <edelib/Window.h> | #include <edelib/Window.h> | ||
Line 76: | Line 77: | ||
</code> | </code> | ||
- | (!) In case you wrote make scripts before, ''Jamfile'' to jam is pretty much the same as ''Makefile'' to make. | + | :!: In case you wrote make scripts before, ''Jamfile'' to jam is pretty much the same as ''Makefile'' to make. |
At the end, the tree should look like this: | At the end, the tree should look like this: | ||
Line 104: | Line 105: | ||
</code> | </code> | ||
- | /!\ Watch for extra space before semicolon; this is required by jam parser. | + | :!: Watch for extra space before semicolon; this is required by jam parser. |
Now, all hard work will be done by jam. Besides ede-hello.cpp will be compiled and installed, jam will also extract translatable strings and store it in ''ede/ede-hello/locale/messages.pot'' file, so translators can use it as source for language specific translations. | Now, all hard work will be done by jam. Besides ede-hello.cpp will be compiled and installed, jam will also extract translatable strings and store it in ''ede/ede-hello/locale/messages.pot'' file, so translators can use it as source for language specific translations. | ||
Line 115: | Line 116: | ||
#include <FL/Fl.H> | #include <FL/Fl.H> | ||
#include <FL/Fl_Box.H> | #include <FL/Fl_Box.H> | ||
+ | #include <edelib/Ede.h> | ||
#include <edelib/Window.h> | #include <edelib/Window.h> | ||