libqxt / README

==============LINUX====================


./configure --help
./configure 
make 
sudo make install

to get the docs into assistant type:
assistant -addContentFile /usr/share/doc/libqxt/index.dcf


to use it in a project:
add CONFIG+=qxt
to your .pro file
QXT=core kit etc...  
will add the modules to your project





==============WINDOWS-mingw====================



./configure.bat
make 
make install

to get the docs into assistant type:
assistant -addContentFile C:\libqxt\doc\libqxt\index.dcf


to use it in a project:
add CONFIG+=qxt
to your .pro file
QXT=core kit etc...
will add the modules to your project






==============WINDOWS-msvc====================
(you could try  ./configure.bat -msvc and open 
the solution file in msvc, we recomend compiling on
commandline though)

./configure.bat   
nmake 
nmake install

to get the docs into assistant type:
assistant -addContentFile C:\libqxt\doc\libqxt\index.dcf


to use it in a project:
add CONFIG+=qxt
to your .pro file
QXT=core kit etc...
will add the modules to your project


if you have an existing msvc project and can't swtich to qmake you use zbenjamins solution:

     Howto use libqxt in a existing Visual Studio Project:
      1.  create and install libqxt. (See install instructions)
      2.  add {libqxtinstalldir}\include\qxt\qxt to your include path
      3.  add {libqxtinstalldir}\lib to your library search path
      4.  to add a specific libqxt module (f.e QxtSql) you have to:
           - add {libqxtinstalldir}\include\qxt\QxtSql to your include path
           - add the library QxtSql.lib to your project
          Most of the times you have also to include the QxtCore and QxtKit modules.
          It's done the same way like the example above.
Tip: Filter by directory path e.g. /media app.js to search for public/media/app.js.
Tip: Use camelCasing e.g. ProjME to search for ProjectModifiedEvent.java.
Tip: Filter by extension type e.g. /repo .js to search for all .js files in the /repo directory.
Tip: Separate your search with spaces e.g. /ssh pom.xml to search for src/ssh/pom.xml.
Tip: Use ↑ and ↓ arrow keys to navigate and return to view the file.
Tip: You can also navigate files with Ctrl+j (next) and Ctrl+k (previous) and view the file with Ctrl+o.
Tip: You can also navigate files with Alt+j (next) and Alt+k (previous) and view the file with Alt+o.