Go to file
Michael Jones fdf1e2badf Updates .gitignore to properly ignore transient build files. 2013-07-12 17:47:55 -05:00
config.tests remove accidentally commited test results 2012-07-22 10:43:44 +02:00
doc change license to BSD 3 clause 2011-09-06 15:21:07 +02:00
examples Moved jsonrpcclient from examples to tools 2012-01-31 21:41:31 +01:00
extras Removed deploy/. Added top level include/ and lib/. 2009-08-13 23:43:08 +03:00
features Modified qmake files to enable build with Qt5 2013-03-05 21:18:42 +01:00
include include/QxtGui -> QxtWidgets 2012-07-22 12:00:01 +02:00
packages Adding "pkgconfig" files to RPM/DEB packaging 2012-02-29 17:08:24 -05:00
premake add "inject" action to premake. 2012-05-28 21:03:58 +02:00
src Qxtdaemon qt5 compatibility 2013-05-14 10:58:43 +02:00
tests Fixed #51 QxtGlobalShortcut doesn't send signal 2010-11-26 20:32:00 +02:00
tools Changes to compile Qxt with Qt5. WARNING!!! - the changes are not tested in application code, they are just made to let Qxt compile with Qt5 2013-02-25 00:40:46 +01:00
translations change license to BSD 3 clause 2011-09-06 15:21:07 +02:00
.gitignore Updates .gitignore to properly ignore transient build files. 2013-07-12 17:47:55 -05: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
change.sh qxtwebjsonrpcservice: prevent crash if post data is missing 2011-09-16 13:23:31 +02:00
configure configure file modified for FreeBSD compatability 2013-01-15 10:17:47 +04:00
configure-premake Port Libqxt to Qt5 2012-05-28 21:03:44 +02:00
configure.bat Port Libqxt to Qt5 2012-05-28 21:03:44 +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 Changes to compile Qxt with Qt5. WARNING!!! - the changes are not tested in application code, they are just made to let Qxt compile with Qt5 2013-02-25 00:40:46 +01: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.