Go to file
Arvid E. Picciani dfc778f450 change LICENSE file 2011-09-06 15:53:47 +02:00
config.tests Fixed Zeroconf test project file for detecting the Bonjour SDK in Windows. 2011-08-04 12:43:46 +01:00
doc change license to BSD 3 clause 2011-09-06 15:21:07 +02:00
examples Added qxtsnapshot example 2010-11-23 20:35:08 +02:00
extras Removed deploy/. Added top level include/ and lib/. 2009-08-13 23:43:08 +03:00
features Used QMAKE_RPATHDIR instead of deprecated QMAKE_RPATH etc. 2010-11-26 21:48:44 +02:00
include QxtNetwork: introducing QxtSslConnectionManager 2011-01-15 18:31:14 -06:00
packages Fixing email addresses to match keys 2011-09-02 09:05:28 -04:00
src change license to BSD 3 clause 2011-09-06 15:21:07 +02:00
tests Fixed #51 QxtGlobalShortcut doesn't send signal 2010-11-26 20:32:00 +02:00
tools change license to BSD 3 clause 2011-09-06 15:21:07 +02:00
translations change license to BSD 3 clause 2011-09-06 15:21:07 +02:00
.hgignore Updated .hgignore 2011-03-02 23:07:48 +02:00
AUTHORS Update AUTHORS. 2011-02-02 22:03:08 +01:00
CHANGES set tip to version 0.7 2010-05-25 18:12:00 +02:00
COPYING change LICENSE file 2011-09-06 15:53:47 +02:00
README Adding packaging documentation to README 2011-09-02 08:12:46 -04:00
configure Moved qxtvars.prf under features/ to avoid qmake warnings when building examples 2010-11-26 17:48:43 +02:00
configure.bat Changes to make libqxt to build on Symbian 2011-01-09 20:41:42 +02:00
cpl1.0.txt added reference to CPL, added libqxt contact e-mail 2007-06-25 15:26:38 +00:00
lgpl-2.1.txt LGPL 2009-02-02 16:27:56 +00:00
libqxt.pro Introducing RPM and Debian-style package building 2011-09-01 17:50:22 -04:00

README

1) configure

	make sure qmake is in your PATH and run ./configure  or configure.bat on windows.

    	see configure --help for more information

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

2) build
	
	type make or nmake when using msvc
	then don't forget to make install 
	Note: This will also install qxt.prf to your qtdir/mkspecs/features directory.



3) use

	Add the following lines to your qmake project file:
	CONFIG  += qxt
	QXT     += core gui

	The QXT variable should contain the modules you want. (In this example core and gui are used.)
	Note: Some modules depend on other modules. The required modules are added automatically.

	if you have an existing msvc project and can't swtich to qmake you can 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\QxtCore 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.

==============================================================================

Building packages (Linux/Unix - experimental):

To build packages for Redhat or Debian based distributions, you can utilize
the "rpm" or "deb" make targets. Perform the configure as outlined above,
edit the "config" file in the packages subdirectory if needed and then type
"make rpm" or "make deb" as appropriate. This will also perform a "make clean"
to avoid copying files which will be rebuilt anyway.

For RPM packages, you will need a standard .rpmmacros file in your home
directory. A sample file, "rpmmacros-sample", is contained in the packages
directory and must be edited for your environment before use.