2013-05-15 13:17:33 +02:00
|
|
|
#############################################################################
|
|
|
|
##
|
|
|
|
## Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
## Contact: http://www.qt-project.org/legal
|
|
|
|
##
|
|
|
|
## This file is part of Qt Creator.
|
|
|
|
##
|
|
|
|
## Commercial License Usage
|
|
|
|
## Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
## accordance with the commercial license agreement provided with the
|
|
|
|
## Software or, alternatively, in accordance with the terms contained in
|
|
|
|
## a written agreement between you and Digia. For licensing terms and
|
|
|
|
## conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
## use the contact form at http://qt.digia.com/contact-us.
|
|
|
|
##
|
|
|
|
## GNU Lesser General Public License Usage
|
|
|
|
## Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
## General Public License version 2.1 as published by the Free Software
|
|
|
|
## Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
## packaging of this file. Please review the following information to
|
|
|
|
## ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
## will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
##
|
|
|
|
## In addition, as a special exception, Digia gives you certain additional
|
|
|
|
## rights. These rights are described in the Digia Qt LGPL Exception
|
|
|
|
## version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
##
|
|
|
|
#############################################################################
|
|
|
|
|
2012-06-12 17:16:41 +02:00
|
|
|
import __builtin__
|
2012-02-17 17:10:53 +01:00
|
|
|
import re
|
|
|
|
|
2011-11-29 16:00:18 +01:00
|
|
|
processStarted = False
|
|
|
|
processExited = False
|
|
|
|
|
2013-08-08 11:26:13 +02:00
|
|
|
def __handleProcessStarted__(*args):
|
2011-11-29 16:00:18 +01:00
|
|
|
global processStarted
|
|
|
|
processStarted = True
|
|
|
|
|
2013-08-08 11:26:13 +02:00
|
|
|
def __handleProcessExited__(*args):
|
2011-11-29 16:00:18 +01:00
|
|
|
global processExited
|
|
|
|
processExited = True
|
|
|
|
|
2013-04-05 16:58:06 +02:00
|
|
|
def openQmakeProject(projectPath, targets=Targets.desktopTargetClasses(), fromWelcome=False):
|
2012-03-20 11:49:37 +01:00
|
|
|
cleanUpUserFiles(projectPath)
|
2012-09-18 12:48:40 +02:00
|
|
|
if fromWelcome:
|
|
|
|
mouseClick(waitForObject(":OpenProject_QStyleItem"), 5, 5, 0, Qt.LeftButton)
|
|
|
|
if not platform.system() == "Darwin":
|
2013-05-23 14:44:22 +02:00
|
|
|
waitFor("waitForObject(':fileNameEdit_QLineEdit', 1000).focus == True", 3000)
|
2012-09-18 12:48:40 +02:00
|
|
|
else:
|
|
|
|
invokeMenuItem("File", "Open File or Project...")
|
2012-01-11 17:04:20 +01:00
|
|
|
selectFromFileDialog(projectPath)
|
2012-03-20 11:49:37 +01:00
|
|
|
try:
|
|
|
|
# handle update generated files dialog
|
2012-04-05 14:57:13 +02:00
|
|
|
waitForObject("{type='QLabel' name='qt_msgbox_label' visible='1' "
|
|
|
|
"text?='The following files are either outdated or have been modified*' "
|
|
|
|
"window={type='QMessageBox' unnamed='1' visible='1'}}", 3000)
|
2012-03-20 11:49:37 +01:00
|
|
|
clickButton(waitForObject("{text='Yes' type='QPushButton' unnamed='1' visible='1'}"))
|
|
|
|
except:
|
|
|
|
pass
|
2013-01-18 16:31:48 +01:00
|
|
|
checkedTargets = __chooseTargets__(targets)
|
2012-02-06 14:21:54 +01:00
|
|
|
configureButton = waitForObject("{text='Configure Project' type='QPushButton' unnamed='1' visible='1'"
|
2012-11-02 19:34:38 +01:00
|
|
|
"window=':Qt Creator_Core::Internal::MainWindow'}")
|
2012-02-06 14:21:54 +01:00
|
|
|
clickButton(configureButton)
|
2013-01-18 16:31:48 +01:00
|
|
|
return checkedTargets
|
2011-10-06 20:16:15 +02:00
|
|
|
|
2012-01-26 22:46:25 +01:00
|
|
|
def openCmakeProject(projectPath, buildDir):
|
2011-10-06 20:16:15 +02:00
|
|
|
invokeMenuItem("File", "Open File or Project...")
|
2012-01-11 17:04:20 +01:00
|
|
|
selectFromFileDialog(projectPath)
|
2012-01-26 22:46:25 +01:00
|
|
|
replaceEditorContent("{type='Utils::BaseValidatingLineEdit' unnamed='1' visible='1'"
|
|
|
|
"window=':CMake Wizard_CMakeProjectManager::Internal::CMakeOpenProjectWizard'}", buildDir)
|
2012-11-02 19:34:38 +01:00
|
|
|
clickButton(waitForObject(":CMake Wizard.Next_QPushButton"))
|
2013-08-22 16:26:44 +02:00
|
|
|
return __handleCmakeWizardPage__()
|
|
|
|
|
|
|
|
def __handleCmakeWizardPage__():
|
2011-10-06 20:16:15 +02:00
|
|
|
generatorCombo = waitForObject(":Generator:_QComboBox")
|
2012-01-27 15:37:35 +01:00
|
|
|
mkspec = __getMkspecFromQmake__("qmake")
|
|
|
|
test.log("Using mkspec '%s'" % mkspec)
|
|
|
|
|
2013-01-24 16:18:32 +01:00
|
|
|
generatorText = "Unix Generator (Desktop 474 GCC)"
|
2012-01-27 15:37:35 +01:00
|
|
|
if "win32-" in mkspec:
|
2013-01-24 16:18:32 +01:00
|
|
|
generatorName = {"win32-g++" : "MinGW Generator (Desktop 474 GCC)",
|
2013-06-21 17:46:53 +02:00
|
|
|
"win32-msvc2010" : "NMake Generator (Desktop 480 MSVC2010)"}
|
2012-01-27 15:37:35 +01:00
|
|
|
if mkspec in generatorName:
|
2013-01-24 16:18:32 +01:00
|
|
|
generatorText = generatorName[mkspec]
|
|
|
|
index = generatorCombo.findText(generatorText)
|
|
|
|
if index == -1:
|
|
|
|
test.warning("No matching CMake generator for mkspec '%s' found." % mkspec)
|
|
|
|
else:
|
|
|
|
generatorCombo.setCurrentIndex(index)
|
2012-01-27 15:37:35 +01:00
|
|
|
|
2012-11-02 19:34:38 +01:00
|
|
|
clickButton(waitForObject(":CMake Wizard.Run CMake_QPushButton"))
|
2012-01-24 11:59:54 +01:00
|
|
|
try:
|
|
|
|
clickButton(waitForObject(":CMake Wizard.Finish_QPushButton", 60000))
|
|
|
|
except LookupError:
|
|
|
|
cmakeOutput = waitForObject("{type='QPlainTextEdit' unnamed='1' visible='1' "
|
|
|
|
"window=':CMake Wizard_CMakeProjectManager::Internal::CMakeOpenProjectWizard'}")
|
|
|
|
test.warning("Error while executing cmake - see details for cmake output.",
|
|
|
|
str(cmakeOutput.plainText))
|
|
|
|
clickButton(waitForObject(":CMake Wizard.Cancel_QPushButton"))
|
|
|
|
return False
|
|
|
|
return True
|
2011-10-06 20:16:15 +02:00
|
|
|
|
2012-02-16 12:57:24 +01:00
|
|
|
# this function returns a list of available targets - this is not 100% error proof
|
|
|
|
# because the Simulator target is added for some cases even when Simulator has not
|
|
|
|
# been set up inside Qt versions/Toolchains
|
|
|
|
# this list can be used in __chooseTargets__()
|
2012-10-09 14:02:18 +02:00
|
|
|
def __createProjectOrFileSelectType__(category, template, fromWelcome = False, isProject=True):
|
2012-09-18 12:48:40 +02:00
|
|
|
if fromWelcome:
|
|
|
|
mouseClick(waitForObject(":CreateProject_QStyleItem"), 5, 5, 0, Qt.LeftButton)
|
|
|
|
else:
|
|
|
|
invokeMenuItem("File", "New File or Project...")
|
2012-11-02 19:34:38 +01:00
|
|
|
categoriesView = waitForObject("{type='QTreeView' name='templateCategoryView'}")
|
2012-10-09 14:02:18 +02:00
|
|
|
if isProject:
|
|
|
|
clickItem(categoriesView, "Projects." + category, 5, 5, 0, Qt.LeftButton)
|
|
|
|
else:
|
|
|
|
clickItem(categoriesView, "Files and Classes." + category, 5, 5, 0, Qt.LeftButton)
|
2012-11-02 19:34:38 +01:00
|
|
|
templatesView = waitForObject("{name='templatesView' type='QListView'}")
|
2011-11-01 13:56:37 +01:00
|
|
|
clickItem(templatesView, template, 5, 5, 0, Qt.LeftButton)
|
2012-02-16 12:57:24 +01:00
|
|
|
text = waitForObject("{type='QTextBrowser' name='templateDescription' visible='1'}").plainText
|
2012-11-02 19:34:38 +01:00
|
|
|
clickButton(waitForObject("{text='Choose...' type='QPushButton' unnamed='1' visible='1'}"))
|
2013-07-18 17:34:27 +02:00
|
|
|
return __getSupportedPlatforms__(str(text), template)[0]
|
2011-11-01 13:56:37 +01:00
|
|
|
|
2011-11-01 15:58:45 +01:00
|
|
|
def __createProjectSetNameAndPath__(path, projectName = None, checks = True):
|
2012-11-02 19:34:38 +01:00
|
|
|
directoryEdit = waitForObject("{type='Utils::BaseValidatingLineEdit' unnamed='1' visible='1'}")
|
2011-10-28 21:42:12 +02:00
|
|
|
replaceEditorContent(directoryEdit, path)
|
|
|
|
projectNameEdit = waitForObject("{name='nameLineEdit' visible='1' "
|
2012-11-02 19:34:38 +01:00
|
|
|
"type='Utils::ProjectNameValidatingLineEdit'}")
|
2011-10-28 21:42:12 +02:00
|
|
|
if projectName == None:
|
|
|
|
projectName = projectNameEdit.text
|
|
|
|
else:
|
|
|
|
replaceEditorContent(projectNameEdit, projectName)
|
|
|
|
if checks:
|
|
|
|
stateLabel = findObject("{type='QLabel' name='stateLabel'}")
|
|
|
|
labelCheck = stateLabel.text=="" and stateLabel.styleSheet == ""
|
|
|
|
test.verify(labelCheck, "Project name and base directory without warning or error")
|
|
|
|
# make sure this is not set as default location
|
2011-11-08 13:20:24 +01:00
|
|
|
ensureChecked("{type='QCheckBox' name='projectsDirectoryCheckBox' visible='1'}", False)
|
2011-10-28 21:42:12 +02:00
|
|
|
clickButton(waitForObject(":Next_QPushButton"))
|
2011-11-09 16:40:35 +01:00
|
|
|
return str(projectName)
|
2011-10-28 21:42:12 +02:00
|
|
|
|
2012-01-17 15:39:57 +01:00
|
|
|
# Selects the Qt versions for a project
|
|
|
|
# param checks turns tests in the function on if set to True
|
2012-02-16 12:57:24 +01:00
|
|
|
# param available a list holding the available targets
|
2012-06-27 19:12:18 +02:00
|
|
|
def __selectQtVersionDesktop__(checks, available=None):
|
2013-04-05 16:58:06 +02:00
|
|
|
checkedTargets = __chooseTargets__(Targets.desktopTargetClasses(), available)
|
2012-06-27 19:12:18 +02:00
|
|
|
if checks:
|
2012-09-04 15:11:08 +02:00
|
|
|
cbObject = ("{type='QCheckBox' text='%s' unnamed='1' visible='1' "
|
|
|
|
"container={type='Utils::DetailsWidget' visible='1' unnamed='1'}}")
|
|
|
|
verifyChecked(cbObject % "Debug")
|
|
|
|
verifyChecked(cbObject % "Release")
|
2011-12-13 19:46:10 +01:00
|
|
|
clickButton(waitForObject(":Next_QPushButton"))
|
2013-01-18 16:31:48 +01:00
|
|
|
return checkedTargets
|
2011-12-13 19:46:10 +01:00
|
|
|
|
2011-11-01 15:58:45 +01:00
|
|
|
def __createProjectHandleLastPage__(expectedFiles = None):
|
2011-10-14 16:29:46 +02:00
|
|
|
if expectedFiles != None:
|
2011-12-13 19:46:10 +01:00
|
|
|
summary = str(waitForObject("{name='filesLabel' text?='<qt>Files to be added in<pre>*</pre>'"
|
|
|
|
"type='QLabel' visible='1'}").text)
|
2011-10-14 16:29:46 +02:00
|
|
|
lastIndex = 0
|
|
|
|
for filename in expectedFiles:
|
|
|
|
index = summary.find(filename)
|
|
|
|
test.verify(index > lastIndex, "'" + filename + "' found at index " + str(index))
|
|
|
|
lastIndex = index
|
|
|
|
selectFromCombo(":addToVersionControlComboBox_QComboBox", "<None>")
|
2012-11-02 19:34:38 +01:00
|
|
|
clickButton(waitForObject("{type='QPushButton' text~='(Finish|Done)' visible='1'}"))
|
2011-10-14 16:29:46 +02:00
|
|
|
|
2011-12-13 19:46:10 +01:00
|
|
|
def __verifyFileCreation__(path, expectedFiles):
|
|
|
|
for filename in expectedFiles:
|
|
|
|
if filename != path:
|
|
|
|
filename = os.path.join(path, filename)
|
|
|
|
test.verify(os.path.exists(filename), "Checking if '" + filename + "' was created")
|
|
|
|
|
2012-01-17 15:39:57 +01:00
|
|
|
# Creates a Qt GUI project
|
|
|
|
# param path specifies where to create the project
|
|
|
|
# param projectName is the name for the new project
|
|
|
|
# param checks turns tests in the function on if set to True
|
2012-06-27 19:12:18 +02:00
|
|
|
def createProject_Qt_GUI(path, projectName, checks = True):
|
2013-10-23 18:04:41 +02:00
|
|
|
template = "Qt Widgets Application"
|
2012-10-09 14:02:18 +02:00
|
|
|
available = __createProjectOrFileSelectType__(" Applications", template)
|
2011-11-01 15:58:45 +01:00
|
|
|
__createProjectSetNameAndPath__(path, projectName, checks)
|
2013-01-18 16:31:48 +01:00
|
|
|
checkedTargets = __selectQtVersionDesktop__(checks, available)
|
2011-10-05 13:18:42 +02:00
|
|
|
|
|
|
|
if checks:
|
|
|
|
exp_filename = "mainwindow"
|
|
|
|
h_file = exp_filename + ".h"
|
|
|
|
cpp_file = exp_filename + ".cpp"
|
|
|
|
ui_file = exp_filename + ".ui"
|
|
|
|
pro_file = projectName + ".pro"
|
|
|
|
|
|
|
|
waitFor("object.exists(':headerFileLineEdit_Utils::FileNameValidatingLineEdit')", 20000)
|
|
|
|
waitFor("object.exists(':sourceFileLineEdit_Utils::FileNameValidatingLineEdit')", 20000)
|
|
|
|
waitFor("object.exists(':formFileLineEdit_Utils::FileNameValidatingLineEdit')", 20000)
|
|
|
|
|
|
|
|
test.compare(findObject(":headerFileLineEdit_Utils::FileNameValidatingLineEdit").text, h_file)
|
|
|
|
test.compare(findObject(":sourceFileLineEdit_Utils::FileNameValidatingLineEdit").text, cpp_file)
|
|
|
|
test.compare(findObject(":formFileLineEdit_Utils::FileNameValidatingLineEdit").text, ui_file)
|
|
|
|
|
2011-12-13 19:46:10 +01:00
|
|
|
clickButton(waitForObject(":Next_QPushButton"))
|
2011-10-05 13:18:42 +02:00
|
|
|
|
2011-10-14 16:29:46 +02:00
|
|
|
expectedFiles = None
|
2011-10-05 13:18:42 +02:00
|
|
|
if checks:
|
2011-12-13 19:46:10 +01:00
|
|
|
if platform.system() in ('Windows', 'Microsoft'):
|
|
|
|
path = os.path.abspath(path)
|
2011-12-13 13:54:14 +01:00
|
|
|
path = os.path.join(path, projectName)
|
2012-03-09 17:17:34 +01:00
|
|
|
expectedFiles = [path]
|
2012-04-05 19:19:01 +02:00
|
|
|
expectedFiles.extend(__sortFilenamesOSDependent__(["main.cpp", cpp_file, h_file, ui_file, pro_file]))
|
2011-11-01 15:58:45 +01:00
|
|
|
__createProjectHandleLastPage__(expectedFiles)
|
2011-10-05 13:18:42 +02:00
|
|
|
|
2013-04-25 19:08:55 +02:00
|
|
|
progressBarWait(20000)
|
2011-12-13 19:46:10 +01:00
|
|
|
__verifyFileCreation__(path, expectedFiles)
|
2013-01-18 16:31:48 +01:00
|
|
|
return checkedTargets
|
2011-12-13 19:46:10 +01:00
|
|
|
|
2012-01-31 15:49:59 +01:00
|
|
|
# Creates a Qt Console project
|
|
|
|
# param path specifies where to create the project
|
|
|
|
# param projectName is the name for the new project
|
|
|
|
# param checks turns tests in the function on if set to True
|
2012-06-27 19:12:18 +02:00
|
|
|
def createProject_Qt_Console(path, projectName, checks = True):
|
2012-10-09 14:02:18 +02:00
|
|
|
available = __createProjectOrFileSelectType__(" Applications", "Qt Console Application")
|
2011-12-13 19:46:10 +01:00
|
|
|
__createProjectSetNameAndPath__(path, projectName, checks)
|
2013-01-18 16:31:48 +01:00
|
|
|
checkedTargets = __selectQtVersionDesktop__(checks, available)
|
2011-10-05 13:18:42 +02:00
|
|
|
|
2011-12-13 19:46:10 +01:00
|
|
|
expectedFiles = None
|
|
|
|
if checks:
|
|
|
|
if platform.system() in ('Windows', 'Microsoft'):
|
|
|
|
path = os.path.abspath(path)
|
|
|
|
path = os.path.join(path, projectName)
|
|
|
|
cpp_file = "main.cpp"
|
|
|
|
pro_file = projectName + ".pro"
|
2012-04-05 19:19:01 +02:00
|
|
|
expectedFiles = [path]
|
|
|
|
expectedFiles.extend(__sortFilenamesOSDependent__([cpp_file, pro_file]))
|
2011-12-13 19:46:10 +01:00
|
|
|
__createProjectHandleLastPage__(expectedFiles)
|
2011-10-05 13:18:42 +02:00
|
|
|
|
2013-04-25 19:08:55 +02:00
|
|
|
progressBarWait(10000)
|
2011-12-13 19:46:10 +01:00
|
|
|
__verifyFileCreation__(path, expectedFiles)
|
2013-01-18 16:31:48 +01:00
|
|
|
return checkedTargets
|
2011-10-07 15:05:55 +02:00
|
|
|
|
2012-09-18 12:48:40 +02:00
|
|
|
def createNewQtQuickApplication(workingDir, projectName = None, templateFile = None,
|
2013-04-05 16:58:06 +02:00
|
|
|
targets=Targets.desktopTargetClasses(), qtQuickVersion=1,
|
2012-09-18 12:48:40 +02:00
|
|
|
fromWelcome=False):
|
2012-02-16 12:57:24 +01:00
|
|
|
if templateFile:
|
2013-03-22 17:29:08 +01:00
|
|
|
available = __createProjectOrFileSelectType__(" Applications", "Qt Quick %d Application (from Existing QML File)"
|
|
|
|
% qtQuickVersion, fromWelcome)
|
2011-10-07 15:05:55 +02:00
|
|
|
else:
|
2013-03-21 17:29:46 +01:00
|
|
|
available = __createProjectOrFileSelectType__(" Applications", "Qt Quick %d Application (Built-in Types)"
|
2012-09-18 12:48:40 +02:00
|
|
|
% qtQuickVersion, fromWelcome)
|
2012-02-16 12:57:24 +01:00
|
|
|
projectName = __createProjectSetNameAndPath__(workingDir, projectName)
|
|
|
|
if templateFile:
|
2012-11-02 19:34:38 +01:00
|
|
|
baseLineEd = waitForObject("{type='Utils::BaseValidatingLineEdit' unnamed='1' visible='1'}")
|
2011-10-07 15:05:55 +02:00
|
|
|
type(baseLineEd, templateFile)
|
2012-11-02 19:34:38 +01:00
|
|
|
nextButton = waitForObject(":Next_QPushButton")
|
2012-02-16 12:57:24 +01:00
|
|
|
clickButton(nextButton)
|
2013-01-18 16:31:48 +01:00
|
|
|
checkedTargets = __chooseTargets__(targets, available)
|
2011-10-07 15:05:55 +02:00
|
|
|
snooze(1)
|
2012-11-02 19:34:38 +01:00
|
|
|
nextButton = waitForObject(":Next_QPushButton")
|
2011-10-07 15:05:55 +02:00
|
|
|
clickButton(nextButton)
|
2011-11-01 15:58:45 +01:00
|
|
|
__createProjectHandleLastPage__()
|
2013-02-07 20:48:00 +01:00
|
|
|
|
2013-04-25 19:08:55 +02:00
|
|
|
progressBarWait(10000)
|
2013-01-18 16:31:48 +01:00
|
|
|
return checkedTargets, projectName
|
2011-10-13 14:29:51 +02:00
|
|
|
|
2013-08-26 11:30:54 +02:00
|
|
|
def createNewQtQuickUI(workingDir, qtQuickVersion=1):
|
|
|
|
__createProjectOrFileSelectType__(" Applications", "Qt Quick %d UI" % qtQuickVersion)
|
2011-10-13 14:29:51 +02:00
|
|
|
if workingDir == None:
|
|
|
|
workingDir = tempDir()
|
2011-11-29 16:00:18 +01:00
|
|
|
projectName = __createProjectSetNameAndPath__(workingDir)
|
2011-11-01 15:58:45 +01:00
|
|
|
__createProjectHandleLastPage__()
|
2011-11-29 16:00:18 +01:00
|
|
|
return projectName
|
2011-10-13 14:29:51 +02:00
|
|
|
|
2013-08-26 11:30:54 +02:00
|
|
|
def createNewQmlExtension(workingDir, targets=Targets.DESKTOP_474_GCC, qtQuickVersion=1):
|
|
|
|
available = __createProjectOrFileSelectType__(" Libraries", "Qt Quick %d Extension Plugin"
|
|
|
|
% qtQuickVersion)
|
2011-10-13 14:29:51 +02:00
|
|
|
if workingDir == None:
|
|
|
|
workingDir = tempDir()
|
2011-11-01 15:58:45 +01:00
|
|
|
__createProjectSetNameAndPath__(workingDir)
|
2013-08-26 11:30:54 +02:00
|
|
|
checkedTargets = __chooseTargets__(targets, available)
|
2011-10-28 21:42:12 +02:00
|
|
|
nextButton = waitForObject(":Next_QPushButton")
|
2011-10-13 14:29:51 +02:00
|
|
|
clickButton(nextButton)
|
2013-05-16 16:58:25 +02:00
|
|
|
nameLineEd = waitForObject("{buddy={type='QLabel' text='Object class-name:' unnamed='1' visible='1'} "
|
2012-11-02 19:34:38 +01:00
|
|
|
"type='QLineEdit' unnamed='1' visible='1'}")
|
2011-10-13 14:29:51 +02:00
|
|
|
replaceEditorContent(nameLineEd, "TestItem")
|
|
|
|
uriLineEd = waitForObject("{buddy={type='QLabel' text='URI:' unnamed='1' visible='1'} "
|
2012-11-02 19:34:38 +01:00
|
|
|
"type='QLineEdit' unnamed='1' visible='1'}")
|
2012-10-09 12:47:18 +02:00
|
|
|
replaceEditorContent(uriLineEd, "org.qt-project.test.qmlcomponents")
|
2011-10-13 14:29:51 +02:00
|
|
|
clickButton(nextButton)
|
2011-11-01 15:58:45 +01:00
|
|
|
__createProjectHandleLastPage__()
|
2013-01-18 16:31:48 +01:00
|
|
|
return checkedTargets
|
2011-11-29 16:00:18 +01:00
|
|
|
|
2013-08-22 16:26:44 +02:00
|
|
|
def createEmptyQtProject(workingDir=None, projectName=None, targets=Targets.desktopTargetClasses()):
|
|
|
|
__createProjectOrFileSelectType__(" Other Project", "Empty Qt Project")
|
|
|
|
if workingDir == None:
|
|
|
|
workingDir = tempDir()
|
|
|
|
projectName = __createProjectSetNameAndPath__(workingDir, projectName)
|
|
|
|
checkedTargets = __chooseTargets__(targets)
|
|
|
|
snooze(1)
|
|
|
|
clickButton(waitForObject(":Next_QPushButton"))
|
|
|
|
__createProjectHandleLastPage__()
|
|
|
|
return projectName, checkedTargets
|
|
|
|
|
|
|
|
def createNewNonQtProject(workingDir=None, projectName=None, target=Targets.DESKTOP_474_GCC,
|
|
|
|
plainC=False, cmake=False):
|
|
|
|
if plainC:
|
|
|
|
template = "Plain C Project"
|
|
|
|
else:
|
|
|
|
template = "Plain C++ Project"
|
|
|
|
if cmake:
|
|
|
|
template += " (CMake Build)"
|
|
|
|
available = __createProjectOrFileSelectType__(" Non-Qt Project", template)
|
|
|
|
if workingDir == None:
|
|
|
|
workingDir = tempDir()
|
|
|
|
projectName = __createProjectSetNameAndPath__(workingDir, projectName)
|
|
|
|
if cmake:
|
|
|
|
__createProjectHandleLastPage__()
|
|
|
|
clickButton(waitForObject(":Next_QPushButton"))
|
|
|
|
if not __handleCmakeWizardPage__():
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
__chooseTargets__(target, availableTargets=available)
|
|
|
|
clickButton(waitForObject(":Next_QPushButton"))
|
|
|
|
__createProjectHandleLastPage__()
|
|
|
|
return projectName
|
|
|
|
|
2013-04-05 16:58:06 +02:00
|
|
|
# parameter target can be an OR'd value of Targets
|
2013-08-22 16:26:44 +02:00
|
|
|
# parameter availableTargets should be the result of __createProjectOrFileSelectType__()
|
2012-02-16 12:57:24 +01:00
|
|
|
# or use None as a fallback
|
2013-10-24 12:06:42 +02:00
|
|
|
def __chooseTargets__(targets=Targets.DESKTOP_474_GCC, availableTargets=None):
|
2012-02-16 12:57:24 +01:00
|
|
|
if availableTargets != None:
|
|
|
|
available = availableTargets
|
|
|
|
else:
|
|
|
|
# following targets depend on the build environment - added for further/later tests
|
2013-07-12 18:28:46 +02:00
|
|
|
available = [Targets.DESKTOP_474_GCC, Targets.DESKTOP_480_GCC, Targets.DESKTOP_501_DEFAULT,
|
|
|
|
Targets.MAEMO5, Targets.EMBEDDED_LINUX, Targets.SIMULATOR, Targets.HARMATTAN]
|
2012-02-16 12:57:24 +01:00
|
|
|
if platform.system() in ('Windows', 'Microsoft'):
|
2013-04-05 16:58:06 +02:00
|
|
|
available.remove(Targets.EMBEDDED_LINUX)
|
2013-06-21 17:46:53 +02:00
|
|
|
available.append(Targets.DESKTOP_480_MSVC2010)
|
2013-10-24 12:06:42 +02:00
|
|
|
for target in filter(lambda x: x in available,
|
|
|
|
(Targets.MAEMO5, Targets.HARMATTAN)):
|
|
|
|
available.remove(target)
|
2013-01-18 16:31:48 +01:00
|
|
|
checkedTargets = []
|
2011-11-29 16:00:18 +01:00
|
|
|
for current in available:
|
|
|
|
mustCheck = targets & current == current
|
|
|
|
try:
|
2013-04-05 16:58:06 +02:00
|
|
|
ensureChecked("{type='QCheckBox' text='%s' visible='1'}" % Targets.getStringForTarget(current),
|
2012-07-13 11:37:56 +02:00
|
|
|
mustCheck, 3000)
|
2013-01-18 16:31:48 +01:00
|
|
|
if (mustCheck):
|
|
|
|
checkedTargets.append(current)
|
2011-11-29 16:00:18 +01:00
|
|
|
except LookupError:
|
|
|
|
if mustCheck:
|
2013-04-05 16:58:06 +02:00
|
|
|
test.fail("Failed to check target '%s'." % Targets.getStringForTarget(current))
|
2012-01-30 17:03:41 +01:00
|
|
|
else:
|
2012-02-16 12:57:24 +01:00
|
|
|
# Simulator has been added without knowing whether configured or not - so skip warning here?
|
2013-04-12 18:10:10 +02:00
|
|
|
if current != Targets.SIMULATOR:
|
2013-04-05 16:58:06 +02:00
|
|
|
test.warning("Target '%s' is not set up correctly." % Targets.getStringForTarget(current))
|
2013-01-18 16:31:48 +01:00
|
|
|
return checkedTargets
|
2011-11-29 16:00:18 +01:00
|
|
|
|
|
|
|
# run and close an application
|
|
|
|
# withHookInto - if set to True the function tries to attach to the sub-process instead of simply pressing Stop inside Creator
|
|
|
|
# executable - must be defined when using hook-into
|
|
|
|
# port - must be defined when using hook-into
|
|
|
|
# function - can be a string holding a function name or a reference to the function itself - this function will be called on
|
|
|
|
# the sub-process when hooking-into has been successful - if its missing simply closing the Qt Quick app will be done
|
|
|
|
# sType the SubprocessType - is nearly mandatory - except when using the function parameter
|
|
|
|
# userDefinedType - if you set sType to SubprocessType.USER_DEFINED you must(!) specify the WindowType for hooking into
|
|
|
|
# by yourself (or use the function parameter)
|
|
|
|
# ATTENTION! Make sure this function won't fail and the sub-process will end when the function returns
|
|
|
|
def runAndCloseApp(withHookInto=False, executable=None, port=None, function=None, sType=None, userDefinedType=None):
|
|
|
|
global processStarted, processExited
|
|
|
|
processStarted = processExited = False
|
2012-04-02 13:33:10 +02:00
|
|
|
overrideInstallLazySignalHandler()
|
2013-08-08 11:26:13 +02:00
|
|
|
installLazySignalHandler("{type='QProcess'}", "started()", "__handleProcessStarted__")
|
|
|
|
installLazySignalHandler("{type='QProcess'}", "finished(int,QProcess::ExitStatus)", "__handleProcessExited__")
|
2013-04-23 12:39:05 +02:00
|
|
|
runButton = waitForObject(":*Qt Creator.Run_Core::Internal::FancyToolButton")
|
2011-11-29 16:00:18 +01:00
|
|
|
clickButton(runButton)
|
|
|
|
if sType != SubprocessType.QT_QUICK_UI:
|
|
|
|
waitForSignal("{type='ProjectExplorer::BuildManager' unnamed='1'}", "buildQueueFinished(bool)", 300000)
|
|
|
|
buildSucceeded = checkLastBuild()
|
|
|
|
if not buildSucceeded:
|
|
|
|
test.fatal("Build inside run wasn't successful - leaving test")
|
|
|
|
invokeMenuItem("File", "Exit")
|
|
|
|
return False
|
|
|
|
waitFor("processStarted==True", 10000)
|
|
|
|
if not processStarted:
|
|
|
|
test.fatal("Couldn't start application - leaving test")
|
|
|
|
invokeMenuItem("File", "Exit")
|
|
|
|
return False
|
2012-04-02 13:33:10 +02:00
|
|
|
if sType == SubprocessType.QT_QUICK_UI and os.getenv("SYSTEST_QMLVIEWER_NO_HOOK_INTO", "0") == "1":
|
2012-01-23 11:19:01 +01:00
|
|
|
withHookInto = False
|
2011-11-29 16:00:18 +01:00
|
|
|
if withHookInto and not validType(sType, userDefinedType):
|
|
|
|
if function != None:
|
|
|
|
test.warning("You did not provide a valid value for the SubprocessType value - sType, but you have "
|
|
|
|
"provided a function to execute on the subprocess. Please ensure that your function "
|
|
|
|
"closes the subprocess before exiting, or this test will not complete.")
|
|
|
|
else:
|
|
|
|
test.warning("You did not provide a valid value for the SubprocessType value - sType, nor a "
|
|
|
|
"function to execute on the subprocess. Falling back to pushing the STOP button "
|
|
|
|
"inside creator to terminate execution of the subprocess.")
|
|
|
|
withHookInto = False
|
|
|
|
if withHookInto and not executable in ("", None):
|
|
|
|
__closeSubprocessByHookingInto__(executable, port, function, sType, userDefinedType)
|
|
|
|
else:
|
|
|
|
__closeSubprocessByPushingStop__(sType)
|
|
|
|
return True
|
|
|
|
|
|
|
|
def validType(sType, userDef):
|
|
|
|
if sType == None:
|
|
|
|
return False
|
|
|
|
ty = SubprocessType.getWindowType(sType)
|
|
|
|
return ty != None and not (ty == "user-defined" and (userDef == None or userDef.strip() == ""))
|
|
|
|
|
|
|
|
def __closeSubprocessByPushingStop__(sType):
|
2011-12-12 13:58:18 +01:00
|
|
|
ensureChecked(":Qt Creator_AppOutput_Core::Internal::OutputPaneToggleButton")
|
2012-04-05 18:35:59 +02:00
|
|
|
try:
|
|
|
|
waitForObject(":Qt Creator.Stop_QToolButton", 5000)
|
|
|
|
except:
|
|
|
|
pass
|
2011-11-29 16:00:18 +01:00
|
|
|
playButton = verifyEnabled(":Qt Creator.ReRun_QToolButton", False)
|
|
|
|
stopButton = verifyEnabled(":Qt Creator.Stop_QToolButton")
|
|
|
|
if stopButton.enabled:
|
|
|
|
clickButton(stopButton)
|
|
|
|
test.verify(playButton.enabled)
|
|
|
|
test.compare(stopButton.enabled, False)
|
|
|
|
if sType == SubprocessType.QT_QUICK_UI and platform.system() == "Darwin":
|
2012-02-14 12:24:14 +01:00
|
|
|
waitFor("stopButton.enabled==False")
|
2011-11-29 16:00:18 +01:00
|
|
|
snooze(2)
|
|
|
|
nativeType("<Escape>")
|
|
|
|
else:
|
|
|
|
test.fatal("Subprocess does not seem to have been started.")
|
|
|
|
|
|
|
|
def __closeSubprocessByHookingInto__(executable, port, function, sType, userDefType):
|
|
|
|
global processExited
|
2011-12-12 13:58:18 +01:00
|
|
|
ensureChecked(":Qt Creator_AppOutput_Core::Internal::OutputPaneToggleButton")
|
2012-11-02 19:34:38 +01:00
|
|
|
output = waitForObject("{type='Core::OutputWindow' visible='1' windowTitle='Application Output Window'}")
|
2011-11-29 16:00:18 +01:00
|
|
|
if port == None:
|
|
|
|
test.warning("I need a port number or attaching might fail.")
|
|
|
|
else:
|
|
|
|
waitFor("'Listening on port %d for incoming connectionsdone' in str(output.plainText)" % port, 5000)
|
|
|
|
try:
|
|
|
|
attachToApplication(executable)
|
|
|
|
except:
|
|
|
|
resetApplicationContextToCreator()
|
2013-02-25 16:42:57 +01:00
|
|
|
if "Loading Qt Wrapper failed" in str(output.plainText):
|
|
|
|
test.warning("Loading of Qt Wrapper failed - probably different Qt versions.",
|
|
|
|
"Resetting hook-into settings to continue.")
|
|
|
|
# assuming we're still on the build settings of the current project (TODO)
|
|
|
|
switchViewTo(ViewConstants.PROJECTS)
|
|
|
|
if sType == SubprocessType.QT_QUICK_UI:
|
|
|
|
selectConfig = "QML Viewer"
|
|
|
|
else:
|
|
|
|
selectConfig = executable
|
|
|
|
selectFromCombo(waitForObject("{buddy={text='Run configuration:' type='QLabel' "
|
|
|
|
"unnamed='1' visible='1'} type='QComboBox' unnamed='1' "
|
|
|
|
"visible='1'}"), selectConfig)
|
|
|
|
switchViewTo(ViewConstants.EDIT)
|
|
|
|
global processStarted
|
|
|
|
processStarted = False
|
2013-04-23 12:39:05 +02:00
|
|
|
runButton = waitForObject(":*Qt Creator.Run_Core::Internal::FancyToolButton")
|
2013-02-25 16:42:57 +01:00
|
|
|
clickButton(runButton)
|
|
|
|
if not waitFor("processStarted == True", 10000):
|
|
|
|
test.fatal("Something seems to be really wrong.", "Application output:"
|
|
|
|
% str(output.plainText))
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
test.log("Application seems to be started without hooking-into.")
|
|
|
|
else:
|
|
|
|
test.warning("Could not attach to '%s' - using fallback of pushing STOP inside Creator." % executable)
|
2011-11-29 16:00:18 +01:00
|
|
|
__closeSubprocessByPushingStop__(sType)
|
|
|
|
return False
|
|
|
|
if function == None:
|
|
|
|
if sType==SubprocessType.USER_DEFINED:
|
|
|
|
sendEvent("QCloseEvent", "{type='%s' unnamed='1' visible='1'}" % userDefType)
|
|
|
|
else:
|
|
|
|
sendEvent("QCloseEvent", "{type='%s' unnamed='1' visible='1'}" % SubprocessType.getWindowType(sType))
|
|
|
|
resetApplicationContextToCreator()
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
if isinstance(function, (str, unicode)):
|
|
|
|
globals()[function]()
|
|
|
|
else:
|
|
|
|
function()
|
|
|
|
except:
|
|
|
|
test.fatal("Function to execute on sub-process could not be found.",
|
|
|
|
"Using fallback of pushing STOP inside Creator.")
|
|
|
|
resetApplicationContextToCreator()
|
|
|
|
__closeSubprocessByPushingStop__(sType)
|
2013-08-08 11:26:13 +02:00
|
|
|
waitFor("processExited==True and 'exited with code' in str(output.plainText)", 10000)
|
2011-11-29 16:00:18 +01:00
|
|
|
if not processExited:
|
|
|
|
test.warning("Sub-process seems not to have closed properly.")
|
|
|
|
try:
|
|
|
|
resetApplicationContextToCreator()
|
|
|
|
__closeSubprocessByPushingStop__(sType)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
return True
|
|
|
|
|
|
|
|
# this helper tries to reset the current application context back
|
|
|
|
# to creator - this strange work-around is needed _sometimes_ on MacOS
|
|
|
|
def resetApplicationContextToCreator():
|
|
|
|
appCtxt = applicationContext("qtcreator")
|
|
|
|
if appCtxt.name == "":
|
|
|
|
appCtxt = applicationContext("Qt Creator")
|
|
|
|
setApplicationContext(appCtxt)
|
2012-02-16 12:57:24 +01:00
|
|
|
|
|
|
|
# helper that examines the text (coming from the create project wizard)
|
|
|
|
# to figure out which available targets we have
|
|
|
|
# Simulator must be handled in a special way, because this depends on the
|
|
|
|
# configured Qt versions and Toolchains and cannot be looked up the same way
|
2012-02-17 17:10:53 +01:00
|
|
|
# if you set getAsStrings to True this function returns a list of strings instead
|
2013-04-05 16:58:06 +02:00
|
|
|
# of the constants defined in Targets
|
2013-07-18 17:34:27 +02:00
|
|
|
def __getSupportedPlatforms__(text, templateName, getAsStrings=False):
|
2012-02-17 17:10:53 +01:00
|
|
|
reqPattern = re.compile("requires qt (?P<version>\d+\.\d+(\.\d+)?)", re.IGNORECASE)
|
|
|
|
res = reqPattern.search(text)
|
|
|
|
if res:
|
|
|
|
version = res.group("version")
|
|
|
|
else:
|
|
|
|
version = None
|
2012-02-16 12:57:24 +01:00
|
|
|
if 'Supported Platforms' in text:
|
|
|
|
supports = text[text.find('Supported Platforms'):].split(":")[1].strip().split(" ")
|
|
|
|
result = []
|
|
|
|
if 'Desktop' in supports:
|
2013-08-26 11:17:33 +02:00
|
|
|
if version == None or version < "5.0":
|
|
|
|
result.append(Targets.DESKTOP_474_GCC)
|
|
|
|
result.append(Targets.DESKTOP_480_GCC)
|
|
|
|
if platform.system() in ("Linux", "Darwin"):
|
|
|
|
result.append(Targets.EMBEDDED_LINUX)
|
|
|
|
elif platform.system() in ('Windows', 'Microsoft'):
|
|
|
|
result.append(Targets.DESKTOP_480_MSVC2010)
|
2013-04-05 16:58:06 +02:00
|
|
|
result.append(Targets.DESKTOP_501_DEFAULT)
|
2012-02-16 12:57:24 +01:00
|
|
|
if 'MeeGo/Harmattan' in supports:
|
2013-04-05 16:58:06 +02:00
|
|
|
result.append(Targets.HARMATTAN)
|
2012-08-22 12:39:37 +02:00
|
|
|
if 'Maemo/Fremantle' in supports:
|
2013-04-05 16:58:06 +02:00
|
|
|
result.append(Targets.MAEMO5)
|
2013-09-06 12:20:44 +02:00
|
|
|
if not ("BlackBerry" in templateName or re.search("custom Qt Creator plugin", text)) and (version == None or version < "5.0"):
|
2013-04-05 16:58:06 +02:00
|
|
|
result.append(Targets.SIMULATOR)
|
2012-02-16 12:57:24 +01:00
|
|
|
elif 'Platform independent' in text:
|
2013-02-07 15:42:15 +01:00
|
|
|
# MAEMO5 and HARMATTAN could be wrong here - depends on having Madde plugin enabled or not
|
2013-07-12 18:28:46 +02:00
|
|
|
result = [Targets.DESKTOP_474_GCC, Targets.DESKTOP_480_GCC, Targets.DESKTOP_501_DEFAULT,
|
|
|
|
Targets.MAEMO5, Targets.SIMULATOR, Targets.HARMATTAN]
|
2012-09-26 11:49:21 +02:00
|
|
|
if platform.system() in ('Windows', 'Microsoft'):
|
2013-06-21 17:46:53 +02:00
|
|
|
result.append(Targets.DESKTOP_480_MSVC2010)
|
2012-02-16 12:57:24 +01:00
|
|
|
else:
|
|
|
|
test.warning("Returning None (__getSupportedPlatforms__())",
|
|
|
|
"Parsed text: '%s'" % text)
|
2012-02-17 17:10:53 +01:00
|
|
|
return None, None
|
|
|
|
if getAsStrings:
|
2013-04-05 16:58:06 +02:00
|
|
|
result = Targets.getTargetsAsStrings(result)
|
2012-02-17 17:10:53 +01:00
|
|
|
return result, version
|
2012-04-05 14:29:13 +02:00
|
|
|
|
|
|
|
# copy example project (sourceExample is path to project) to temporary directory inside repository
|
|
|
|
def prepareTemplate(sourceExample):
|
|
|
|
templateDir = os.path.abspath(tempDir() + "/template")
|
2012-10-09 15:00:17 +02:00
|
|
|
try:
|
|
|
|
shutil.copytree(sourceExample, templateDir)
|
|
|
|
except:
|
|
|
|
test.fatal("Error while copying '%s' to '%s'" % (sourceExample, templateDir))
|
|
|
|
return None
|
2012-04-05 14:29:13 +02:00
|
|
|
return templateDir
|
2012-04-05 19:19:01 +02:00
|
|
|
|
|
|
|
def __sortFilenamesOSDependent__(filenames):
|
|
|
|
if platform.system() in ('Windows', 'Microsoft'):
|
|
|
|
filenames.sort(key=str.lower)
|
|
|
|
else:
|
|
|
|
filenames.sort()
|
|
|
|
return filenames
|
2012-07-19 09:16:52 +02:00
|
|
|
|
2012-06-12 17:16:41 +02:00
|
|
|
def __iterateChildren__(model, parent, nestingLevel=0):
|
|
|
|
children = []
|
2012-10-25 12:59:03 +02:00
|
|
|
for currentIndex in dumpIndices(model, parent):
|
2012-06-12 17:16:41 +02:00
|
|
|
children.append([str(currentIndex.text), nestingLevel])
|
|
|
|
if model.hasChildren(currentIndex):
|
|
|
|
children.extend(__iterateChildren__(model, currentIndex, nestingLevel + 1))
|
|
|
|
return children
|
|
|
|
|
|
|
|
# This will write the data to a file which can then be used for comparing
|
|
|
|
def __writeProjectTreeFile__(projectTree, filename):
|
|
|
|
f = open(filename, "w+")
|
|
|
|
f.write('"text"\t"nestinglevel"\n')
|
|
|
|
for elem in projectTree:
|
|
|
|
f.write('"%s"\t"%s"\n' % (elem[0], elem[1]))
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
def __getTestData__(record):
|
|
|
|
return [testData.field(record, "text"),
|
|
|
|
__builtin__.int(testData.field(record, "nestinglevel"))]
|
|
|
|
|
|
|
|
def compareProjectTree(rootObject, dataset):
|
|
|
|
root = waitForObject(rootObject)
|
|
|
|
tree = __iterateChildren__(root.model(), root)
|
|
|
|
|
|
|
|
# __writeProjectTreeFile__(tree, dataset)
|
|
|
|
|
|
|
|
for i, current in enumerate(map(__getTestData__, testData.dataset(dataset))):
|
|
|
|
try:
|
|
|
|
# Just removing everything up to the found item
|
|
|
|
# Writing a pass would result in truly massive logs
|
|
|
|
tree = tree[tree.index(current) + 1:]
|
|
|
|
except ValueError:
|
|
|
|
test.fail('Could not find "%s" with nesting level %s' % tuple(current),
|
|
|
|
'Line %s in dataset' % str(i + 1))
|
|
|
|
return
|
|
|
|
test.passes("No errors found in project tree")
|
2012-10-09 15:00:17 +02:00
|
|
|
|
|
|
|
def addCPlusPlusFileToCurrentProject(name, template, forceOverwrite=False):
|
|
|
|
if name == None:
|
|
|
|
test.fatal("File must have a name - got None.")
|
|
|
|
return
|
|
|
|
__createProjectOrFileSelectType__(" C++", template, isProject=False)
|
|
|
|
window = "{type='Utils::FileWizardDialog' unnamed='1' visible='1'}"
|
|
|
|
basePath = str(waitForObject("{type='Utils::BaseValidatingLineEdit' unnamed='1' visible='1' "
|
|
|
|
"window=%s}" % window).text)
|
|
|
|
lineEdit = waitForObject("{name='nameLineEdit' type='Utils::FileNameValidatingLineEdit' "
|
|
|
|
"visible='1' window=%s}" % window)
|
|
|
|
replaceEditorContent(lineEdit, name)
|
|
|
|
clickButton(waitForObject(":Next_QPushButton"))
|
2013-09-11 23:17:28 +02:00
|
|
|
fileExistedBefore = os.path.exists(os.path.join(basePath, name))
|
2012-10-09 15:00:17 +02:00
|
|
|
__createProjectHandleLastPage__()
|
2013-09-11 23:17:28 +02:00
|
|
|
if (fileExistedBefore):
|
2012-10-09 15:00:17 +02:00
|
|
|
overwriteDialog = "{type='Core::Internal::PromptOverwriteDialog' unnamed='1' visible='1'}"
|
|
|
|
waitForObject(overwriteDialog)
|
|
|
|
if forceOverwrite:
|
|
|
|
buttonToClick = 'OK'
|
|
|
|
else:
|
|
|
|
buttonToClick = 'Cancel'
|
|
|
|
clickButton("{text='%s' type='QPushButton' unnamed='1' visible='1' window=%s}"
|
|
|
|
% (buttonToClick, overwriteDialog))
|
2013-08-26 11:19:31 +02:00
|
|
|
|
|
|
|
def qt5SDKPath():
|
|
|
|
if platform.system() in ('Microsoft', 'Windows'):
|
|
|
|
return os.path.abspath("C:/Qt/Qt5.0.1/5.0.1/msvc2010")
|
|
|
|
elif platform.system() == 'Linux':
|
|
|
|
if __is64BitOS__():
|
|
|
|
return os.path.expanduser("~/Qt5.0.1/5.0.1/gcc_64")
|
|
|
|
return os.path.expanduser("~/Qt5.0.1/5.0.1/gcc")
|
|
|
|
else:
|
|
|
|
return os.path.expanduser("~/Qt5.0.1/5.0.1/clang_64")
|