Skip to content

Commit

Permalink
more instructions. movinf to README
Browse files Browse the repository at this point in the history
--HG--
rename : INSTALL => README
extra : convert_revision : svn%3A16f47a83-c923-0410-902c-c9163ce98875/trunk%40338
  • Loading branch information
aep committed Apr 5, 2007
1 parent 87998c4 commit 64c8d4d
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 42 deletions.
42 changes: 0 additions & 42 deletions INSTALL

This file was deleted.

79 changes: 79 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@



==============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.

0 comments on commit 64c8d4d

Please sign in to comment.