How to build Qube application
See file api.c
in the ROOT directory of Qube SDK. This is the
same directory as the directory, where the file you are reading
at the moment is placed.
Api.c is an example of how simple application of Qube looks like.
To comple his file use the following :
gcc -c api.c
-o api.o -This make a COFF *.o file
mxfgen.exe api.mxx api.o -This transfer COFF *.o file to Qube executable
You can't use
mxfgen.exe everywhere. It's important to call file
!!setup.exe in the directory you want to use as the development one. This
gets the directory you are working on and set paths to this directory.
The other way, how to compile application for Qube is the following :
1st step
Execute "rhide.exe" -This is an Integrated Desktop Environment simple to BCC
2nd step
Compile the file through Rhide - ALT+F9
3nd step
Leaves Rhide.exe and calls mxfgen.exe YourFile.mxx YourFile.o
Note : Be sure
you run mxfgen.exe in the directory you called !!setup.exe
before.