Added Mkspec for Toradex WEC2013 SDK
Change-Id: I738c422ba5f1c1293ce54f53548af62458dda22b Reviewed-by: Maurice Kalinowski <maurice.kalinowski@theqtcompany.com>
This commit is contained in:
parent
47113a1f36
commit
8a928783b9
47
mkspecs/wince80colibri-armv7-msvc2012/qmake.conf
Normal file
47
mkspecs/wince80colibri-armv7-msvc2012/qmake.conf
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
# qmake configuration for Windows Embedded Compact 2013 with VS2012 on ARM targets
|
||||||
|
#
|
||||||
|
# This is just a template for creating WEC2013 mkspecs for ARM targets
|
||||||
|
# Replace the SDK name with actual SDK name.
|
||||||
|
|
||||||
|
include(../common/wince/qmake.conf)
|
||||||
|
|
||||||
|
CE_SDK = Toradex_CE8_SDK # replace with actual SDK name
|
||||||
|
CE_ARCH = ARMV7
|
||||||
|
QT_CONFIG -= accessibility
|
||||||
|
|
||||||
|
DEFINES += QT_NO_CLIPBOARD QT_NO_ACCESSIBILITY QT_NO_NATIVE_GESTURES QT_NOSTANDARDSHELL_UI_MODEL _CRT_SECURE_NO_DEPRECATE _WIN32_WCE=0x800 $$CE_ARCH _AMRV7_ armv7 _ARM_ UNDER_CE WINCE ARM
|
||||||
|
|
||||||
|
#QMAKE_CXXFLAGS += /P
|
||||||
|
QMAKE_CFLAGS_RELEASE += -O2 -MT
|
||||||
|
QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += -O2 -MT -Zi
|
||||||
|
QMAKE_CFLAGS_DEBUG += -Zi -MTd
|
||||||
|
QMAKE_CFLAGS_RELEASE -= -MD
|
||||||
|
QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO -= -MD
|
||||||
|
QMAKE_CFLAGS_DEBUG -= -MDd
|
||||||
|
QMAKE_CXXFLAGS_RELEASE -= -MD
|
||||||
|
QMAKE_CXXFLAGS_RELEASE += -MT
|
||||||
|
QMAKE_CXXFLAGS_RELEASE_WITH_DEBUGINFO += -MT
|
||||||
|
QMAKE_CXXFLAGS_RELEASE_WITH_DEBUGINFO -= -MD
|
||||||
|
QMAKE_CXXFLAGS_DEBUG -= -MDd
|
||||||
|
QMAKE_CXXFLAGS_DEBUG += -MTd
|
||||||
|
QMAKE_INCDIR_OPENGL_ES2 += $$(NV_WINCE_T2_PLAT)/include
|
||||||
|
QMAKE_LFLAGS_CONSOLE = /SUBSYSTEM:WINDOWSCE,8.00 /MACHINE:ARM /ENTRY:mainCRTStartup
|
||||||
|
QMAKE_LFLAGS_WINDOWS = /SUBSYSTEM:WINDOWSCE,8.00 /MACHINE:ARM
|
||||||
|
QMAKE_LFLAGS_DLL = /SUBSYSTEM:WINDOWSCE,8.00 /MACHINE:ARM /DLL /SAFESEH:NO
|
||||||
|
QMAKE_LIBFLAGS_RELEASE = /LTCG
|
||||||
|
QMAKE_LIBS = coredll.lib
|
||||||
|
QMAKE_LIBS_CORE = ole32.lib oleaut32.lib uuid.lib commctrl.lib coredll.lib winsock.lib
|
||||||
|
QMAKE_LIBS_GUI = ole32.lib $$QMAKE_LIBS_CORE
|
||||||
|
QMAKE_LIBS_NETWORK = ws2.lib $$QMAKE_LIBS_GUI
|
||||||
|
QMAKE_LIBS_OPENGL =
|
||||||
|
QMAKE_LIBS_COMPAT =
|
||||||
|
QMAKE_LIBS_OPENVG =
|
||||||
|
QMAKE_LIBS_OPENGL_ES2 = libEGL.lib libGLESv2.lib
|
||||||
|
QMAKE_LIBDIR_OPENGL_ES2 = $$(NV_WINCE_T2_PLAT)/lib/Test
|
||||||
|
QMAKE_INCDIR_EGL = $$(NV_WINCE_T2_PLAT)/include
|
||||||
|
QMAKE_LIBDIR_EGL = $$(NV_WINCE_T2_PLAT)/lib/Test
|
||||||
|
|
||||||
|
QMAKE_RC = rc
|
||||||
|
|
||||||
|
QMAKE_COMPILER_DEFINES -= _MSC_VER=1400
|
||||||
|
QMAKE_COMPILER_DEFINES += _MSC_VER=1700
|
35
mkspecs/wince80colibri-armv7-msvc2012/qplatformdefs.h
Normal file
35
mkspecs/wince80colibri-armv7-msvc2012/qplatformdefs.h
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
/****************************************************************************
|
||||||
|
**
|
||||||
|
** Copyright (C) 2015 The Qt Company Ltd.
|
||||||
|
** Contact: http://www.qt.io/licensing/
|
||||||
|
**
|
||||||
|
** This file is part of the qmake spec of the Qt Toolkit.
|
||||||
|
**
|
||||||
|
** $QT_BEGIN_LICENSE:LGPL21$
|
||||||
|
** 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 The Qt Company. For licensing terms
|
||||||
|
** and conditions see http://www.qt.io/terms-conditions. For further
|
||||||
|
** information use the contact form at http://www.qt.io/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 or version 3 as published by the Free
|
||||||
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
||||||
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
||||||
|
** following information to ensure the GNU Lesser General Public License
|
||||||
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
||||||
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
||||||
|
**
|
||||||
|
** As a special exception, The Qt Company gives you certain additional
|
||||||
|
** rights. These rights are described in The Qt Company LGPL Exception
|
||||||
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
||||||
|
**
|
||||||
|
** $QT_END_LICENSE$
|
||||||
|
**
|
||||||
|
****************************************************************************/
|
||||||
|
|
||||||
|
#include "../common/wince/qplatformdefs.h"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user