forked from qt-creator/qt-creator
		
	Change-Id: I8d3eb57a3cb41c4bfd01defc3f5c512a46a7a428 Reviewed-on: http://codereview.qt.nokia.com/1652 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Daniel Molkentin <daniel.molkentin@nokia.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			579 B
		
	
	
	
		
			Prolog
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			579 B
		
	
	
	
		
			Prolog
		
	
	
	
	
	
include(qtcreator.pri)
 | 
						|
 | 
						|
#version check qt
 | 
						|
!minQtVersion(4, 7, 4) {
 | 
						|
    message("Cannot build Qt Creator with Qt version $${QT_VERSION}.")
 | 
						|
    error("Use at least Qt 4.7.4.")
 | 
						|
}
 | 
						|
 | 
						|
include(doc/doc.pri)
 | 
						|
 | 
						|
TEMPLATE  = subdirs
 | 
						|
CONFIG   += ordered
 | 
						|
 | 
						|
SUBDIRS = src share
 | 
						|
 | 
						|
OTHER_FILES += dist/copyright_template.txt \
 | 
						|
    dist/changes-1.1.0 \
 | 
						|
    dist/changes-1.1.1 \
 | 
						|
    dist/changes-1.2.0 \
 | 
						|
    dist/changes-1.2.1 \
 | 
						|
    dist/changes-1.3.0 \
 | 
						|
    dist/changes-1.3.1 \
 | 
						|
    dist/changes-2.0.0 \
 | 
						|
    dist/changes-2.0.1 \
 | 
						|
    dist/changes-2.1.0 \
 | 
						|
    dist/changes-2.2.0 \
 | 
						|
    dist/changes-2.3.0
 |