Quick instructions in order to run owb.

* To build use:
ccmake src_dir
make

* To build the documentation:
cd BAL/Docs/
doxygen
- Then open BAL/Docs/html/index.html.

* To run owb:
./owb [url]

* If you want to use SDL,
- on X: (xhost + must be done)
export DISPLAY=:0

- on DirectFB:
export DFBARGS=system=sdl,mode=800x600
export SDL_VIDEODRIVER=directfb

- on framebuffer:
export SDL_VIDEODRIVER=fbcon

* To run the layout tests:
export LAYOUT_TEST=
export OWB_BUILD_DIR=/path_to_your_build_dir
- Copy the WebKit layout tests to a LayoutTests dir in your root source dir.
cd WebKitTools/Scripts
./run-webkit-tests .
- Results are in /tmp/layout-test-results/ (50% should pass)

* To run the unit tests:
./testBAL -a -p SRCDIR/BAL/Tests

* To enable full logs export the following:
export MODULE_BRIDGE=LEVEL_INFO
export MODULE_EVENTS=LEVEL_INFO
export MODULE_FACILITIES=LEVEL_INFO
export MODULE_FONTS=LEVEL_INFO
export MODULE_GLUE=LEVEL_INFO
export MODULE_GRAPHICS=LEVEL_INFO
export MODULE_IMAGEDECODERS=LEVEL_INFO
export MODULE_NETWORK=LEVEL_INFO
export MODULE_TYPES=LEVEL_INFO
export MODULE_WIDGETS=LEVEL_INFO

to enable "not implemented" traces, use NOT_IMPLEMENT=1 ./owb
