2016-01-15 14:57:40 +01:00
|
|
|
/****************************************************************************
|
2012-06-29 07:23:13 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 BlackBerry Limited. All rights reserved.
|
2012-06-29 07:23:13 +02:00
|
|
|
** Contact: KDAB (info@kdab.com)
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2012-06-29 07:23:13 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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
|
2016-01-15 14:57:40 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-10-02 09:12:39 +02:00
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2012-06-29 07:23:13 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2012-06-29 07:23:13 +02:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2012-06-29 07:23:13 +02:00
|
|
|
|
2013-01-09 09:23:37 -05:00
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
2012-06-29 07:23:13 +02:00
|
|
|
namespace Qnx {
|
|
|
|
|
namespace Constants {
|
|
|
|
|
|
|
|
|
|
const char QNX_TARGET_KEY[] = "QNX_TARGET";
|
|
|
|
|
const char QNX_HOST_KEY[] = "QNX_HOST";
|
|
|
|
|
|
|
|
|
|
const char QNX_QNX_QT[] = "Qt4ProjectManager.QtVersion.QNX.QNX";
|
|
|
|
|
|
|
|
|
|
const char QNX_QNX_FEATURE[] = "QtSupport.Wizards.FeatureQNX";
|
|
|
|
|
|
|
|
|
|
const char QNX_QNX_RUNCONFIGURATION_PREFIX[] = "Qt4ProjectManager.QNX.QNXRunConfiguration.";
|
|
|
|
|
|
|
|
|
|
const char QNX_QNX_OS_TYPE[] = "QnxOsType";
|
|
|
|
|
|
|
|
|
|
const char QNX_DEBUG_EXECUTABLE[] = "pdebug";
|
|
|
|
|
|
2013-09-09 15:47:46 +02:00
|
|
|
const char QNX_TOOLCHAIN_ID[] = "Qnx.QccToolChain";
|
|
|
|
|
|
2015-04-24 10:31:27 +02:00
|
|
|
// QNX settings constants
|
2016-09-06 14:21:09 +02:00
|
|
|
const char QNX_SETTINGS_ID[] = "DD.Qnx Configuration";
|
2013-01-17 16:06:13 -02:00
|
|
|
|
2014-04-08 19:33:27 +02:00
|
|
|
const char QNX_CONFIGS_FILENAME[] = "qnxconfigurations.xml";
|
2013-12-05 18:24:08 +01:00
|
|
|
|
2014-02-12 05:58:56 +01:00
|
|
|
const char QNX_DEBUGGING_GROUP[] = "Debugger.Group.Qnx";
|
|
|
|
|
|
2012-06-29 07:23:13 +02:00
|
|
|
} // namespace Constants
|
|
|
|
|
} // namespace Qnx
|