forked from qt-creator/qt-creator
		
	Conflicts: qtcreator.pri qtcreator.pro share/qtcreator/templates/qtquickapp/qmlapplicationviewer/qmlapplicationviewer.cpp src/plugins/qt4projectmanager/qt-s60/codaruncontrol.cpp src/plugins/qt4projectmanager/qt4buildconfiguration.cpp src/plugins/qt4projectmanager/wizards/abstractmobileappwizard.cpp src/plugins/remotelinux/remotelinuxruncontrol.cpp Change-Id: I9c89ba9fa2928e14e148041f9001856dce47a20b
		
			
				
	
	
		
			31 lines
		
	
	
		
			701 B
		
	
	
	
		
			Prolog
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			701 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 lib/qtcreator/qtcomponents
 | 
						|
unix:!macx:!isEmpty(copydata):SUBDIRS += bin
 | 
						|
 | 
						|
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 \
 | 
						|
    dist/changes-2.3.1 \
 | 
						|
    dist/changes-2.4.0
 |