SDK OVERVIEW 

Sample applications and tests are located in ./tests/ directory.
Here are listed some simple task which may be easily build with VETLib:

MULTI-PLATFORM

LINUX only:

WINDOWS only:

SOURCE CODE Hierarchy 

Framework's standard class hierarchy:

STATIC Library 

VETLib binaries are stored in ./lib folder, there is a full built and some special builts (useful for local building), read ./lib/README document for informations about each built and its content.
Not-Expert developers should (download and) use FULL library for Windows (VETLib.lib) and on Linux platform it would be easier to download packages of external libraries (then compile them by yourself).
If your interested to compile VETLib on your system, read ./COMPILE document.
You should also have a look inside ./tests/Makefile and check projects in ./tests/mvc.

LINUX Tips 

A very simple compilation command is:

g++ myMainApp.cpp ../lib/VETLib.a -o outputBin.out

here, we have all required objects included in static library, next sample is the current command for compiling vetLinuxMPEGPlayerGTK test:

g++

app_vetLinuxMPEGPlayerGTK.cpp ../lib/VETLib.a
-L/usr/lib/ -lpthread -lmpeg3
-o app_vetLinuxMPEGPlayerGTK.out
'pkg-config --cflag --lib gtk+-2.0'

second and last lines configure two external libraries: libmpeg3 and gtk2, they are required by vetCodec_MPEG and vetWindowGTK components.

You may read ./tests/Makefile for more compilation parameters samples.

PACKAGE DEVELOPMENT (EXTENDING VETLib) 

Extending library means to develop a standard VETLib component, it is NOT required to build library on your platform, you may use static binaries but you should already know how to use VETLib.
Read about Package Development in Packages page.