macOS: Merge qcore_mac cpp and mm files
Files ending with .mm are Objective-C++ files, so we don't need a separate file for the C++ parts. Change-Id: I3ef52bc98291fd461b889978a538e81630d17c6e Reviewed-by: Timur Pocheptsov <timur.pocheptsov@qt.io>
This commit is contained in:
parent
739382a1bf
commit
5f940253bf
@ -37,7 +37,6 @@ QOBJS = \
|
|||||||
$(QTOBJS) $(QTOBJS2)
|
$(QTOBJS) $(QTOBJS2)
|
||||||
# QTOBJS and QTOBJS2 are populated by Makefile.unix.* as for QTSRC (see below).
|
# QTOBJS and QTOBJS2 are populated by Makefile.unix.* as for QTSRC (see below).
|
||||||
# Note: qlibraryinfo.o omitted deliberately - see below.
|
# Note: qlibraryinfo.o omitted deliberately - see below.
|
||||||
# Note: qcore_mac_objc.o is in SOURCES (see qmake.pri) but not QOBJS.
|
|
||||||
|
|
||||||
#all sources, used for the depend target (please keep alphabetic in each block)
|
#all sources, used for the depend target (please keep alphabetic in each block)
|
||||||
DEPEND_SRC = \
|
DEPEND_SRC = \
|
||||||
@ -92,7 +91,6 @@ DEPEND_SRC = \
|
|||||||
$(SOURCE_PATH)/src/corelib/io/qiodevice.cpp \
|
$(SOURCE_PATH)/src/corelib/io/qiodevice.cpp \
|
||||||
$(SOURCE_PATH)/src/corelib/io/qsettings.cpp \
|
$(SOURCE_PATH)/src/corelib/io/qsettings.cpp \
|
||||||
$(SOURCE_PATH)/src/corelib/io/qtemporaryfile.cpp \
|
$(SOURCE_PATH)/src/corelib/io/qtemporaryfile.cpp \
|
||||||
$(SOURCE_PATH)/src/corelib/kernel/qcore_mac_objc.mm \
|
|
||||||
$(SOURCE_PATH)/src/corelib/kernel/qmetatype.cpp \
|
$(SOURCE_PATH)/src/corelib/kernel/qmetatype.cpp \
|
||||||
$(SOURCE_PATH)/src/corelib/kernel/qsystemerror.cpp \
|
$(SOURCE_PATH)/src/corelib/kernel/qsystemerror.cpp \
|
||||||
$(SOURCE_PATH)/src/corelib/kernel/qvariant.cpp \
|
$(SOURCE_PATH)/src/corelib/kernel/qvariant.cpp \
|
||||||
@ -326,7 +324,7 @@ qbytearraymatcher.o: $(SOURCE_PATH)/src/corelib/text/qbytearraymatcher.cpp
|
|||||||
qmetatype.o: $(SOURCE_PATH)/src/corelib/kernel/qmetatype.cpp
|
qmetatype.o: $(SOURCE_PATH)/src/corelib/kernel/qmetatype.cpp
|
||||||
$(CXX) -c -o $@ $(CXXFLAGS) $<
|
$(CXX) -c -o $@ $(CXXFLAGS) $<
|
||||||
|
|
||||||
qcore_mac.o: $(SOURCE_PATH)/src/corelib/kernel/qcore_mac.cpp
|
qcore_mac.o: $(SOURCE_PATH)/src/corelib/kernel/qcore_mac.mm
|
||||||
$(CXX) -c -o $@ $(CXXFLAGS) $<
|
$(CXX) -c -o $@ $(CXXFLAGS) $<
|
||||||
|
|
||||||
qcore_unix.o: $(SOURCE_PATH)/src/corelib/kernel/qcore_unix.cpp
|
qcore_unix.o: $(SOURCE_PATH)/src/corelib/kernel/qcore_unix.cpp
|
||||||
@ -341,9 +339,6 @@ qoperatingsystemversion_win.o: $(SOURCE_PATH)/src/corelib/global/qoperatingsyste
|
|||||||
qoperatingsystemversion_darwin.o: $(SOURCE_PATH)/src/corelib/global/qoperatingsystemversion_darwin.mm
|
qoperatingsystemversion_darwin.o: $(SOURCE_PATH)/src/corelib/global/qoperatingsystemversion_darwin.mm
|
||||||
$(CXX) -c -o $@ $(CXXFLAGS) $<
|
$(CXX) -c -o $@ $(CXXFLAGS) $<
|
||||||
|
|
||||||
qcore_mac_objc.o: $(SOURCE_PATH)/src/corelib/kernel/qcore_mac_objc.mm
|
|
||||||
$(CXX) -c -o $@ $(CXXFLAGS) $<
|
|
||||||
|
|
||||||
qcore_foundation.o: $(SOURCE_PATH)/src/corelib/kernel/qcore_foundation.mm
|
qcore_foundation.o: $(SOURCE_PATH)/src/corelib/kernel/qcore_foundation.mm
|
||||||
$(CXX) -c -o $@ $(CXXFLAGS) $<
|
$(CXX) -c -o $@ $(CXXFLAGS) $<
|
||||||
|
|
||||||
|
@ -12,6 +12,6 @@ QTOBJS2 = \
|
|||||||
qcore_foundation.o
|
qcore_foundation.o
|
||||||
QTSRCS2 = \
|
QTSRCS2 = \
|
||||||
$(SOURCE_PATH)/src/corelib/io/qsettings_mac.cpp \
|
$(SOURCE_PATH)/src/corelib/io/qsettings_mac.cpp \
|
||||||
$(SOURCE_PATH)/src/corelib/kernel/qcore_mac.cpp \
|
$(SOURCE_PATH)/src/corelib/kernel/qcore_mac.mm \
|
||||||
$(SOURCE_PATH)/src/corelib/global/qoperatingsystemversion_darwin.mm \
|
$(SOURCE_PATH)/src/corelib/global/qoperatingsystemversion_darwin.mm \
|
||||||
$(SOURCE_PATH)/src/corelib/kernel/qcore_foundation.mm
|
$(SOURCE_PATH)/src/corelib/kernel/qcore_foundation.mm
|
||||||
|
@ -231,7 +231,7 @@ unix {
|
|||||||
macos {
|
macos {
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
qcore_foundation.mm \
|
qcore_foundation.mm \
|
||||||
qcore_mac.cpp \
|
qcore_mac.mm \
|
||||||
qoperatingsystemversion_darwin.mm \
|
qoperatingsystemversion_darwin.mm \
|
||||||
qsettings_mac.cpp
|
qsettings_mac.cpp
|
||||||
LIBS += \
|
LIBS += \
|
||||||
|
@ -114,14 +114,12 @@ mac {
|
|||||||
SOURCES += \
|
SOURCES += \
|
||||||
kernel/qcfsocketnotifier.cpp \
|
kernel/qcfsocketnotifier.cpp \
|
||||||
kernel/qcoreapplication_mac.cpp \
|
kernel/qcoreapplication_mac.cpp \
|
||||||
kernel/qcore_mac.cpp \
|
kernel/qcore_foundation.mm \
|
||||||
kernel/qcore_foundation.mm
|
kernel/qcore_mac.mm \
|
||||||
!nacl: SOURCES += kernel/qelapsedtimer_mac.cpp
|
|
||||||
|
|
||||||
OBJECTIVE_SOURCES += \
|
|
||||||
kernel/qcore_mac_objc.mm \
|
|
||||||
kernel/qeventdispatcher_cf.mm
|
kernel/qeventdispatcher_cf.mm
|
||||||
|
|
||||||
|
!nacl: SOURCES += kernel/qelapsedtimer_mac.cpp
|
||||||
|
|
||||||
LIBS_PRIVATE += -framework Foundation
|
LIBS_PRIVATE += -framework Foundation
|
||||||
|
|
||||||
osx: LIBS_PRIVATE += -framework CoreServices -framework AppKit -framework Security
|
osx: LIBS_PRIVATE += -framework CoreServices -framework AppKit -framework Security
|
||||||
|
@ -1,163 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
**
|
|
||||||
** Copyright (C) 2016 The Qt Company Ltd.
|
|
||||||
** Contact: https://www.qt.io/licensing/
|
|
||||||
**
|
|
||||||
** This file is part of the QtCore module of the Qt Toolkit.
|
|
||||||
**
|
|
||||||
** $QT_BEGIN_LICENSE:LGPL$
|
|
||||||
** 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 https://www.qt.io/terms-conditions. For further
|
|
||||||
** information use the contact form at https://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 3 as published by the Free Software
|
|
||||||
** Foundation and appearing in the file LICENSE.LGPL3 included in the
|
|
||||||
** packaging of this file. Please review the following information to
|
|
||||||
** ensure the GNU Lesser General Public License version 3 requirements
|
|
||||||
** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
|
|
||||||
**
|
|
||||||
** GNU General Public License Usage
|
|
||||||
** Alternatively, this file may be used under the terms of the GNU
|
|
||||||
** General Public License version 2.0 or (at your option) the GNU General
|
|
||||||
** Public license version 3 or any later version approved by the KDE Free
|
|
||||||
** Qt Foundation. The licenses are as published by the Free Software
|
|
||||||
** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
|
|
||||||
** 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-2.0.html and
|
|
||||||
** https://www.gnu.org/licenses/gpl-3.0.html.
|
|
||||||
**
|
|
||||||
** $QT_END_LICENSE$
|
|
||||||
**
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
#include <private/qcore_mac_p.h>
|
|
||||||
#include <new>
|
|
||||||
|
|
||||||
#include "qhash.h"
|
|
||||||
#include "qpair.h"
|
|
||||||
#include "qmutex.h"
|
|
||||||
#include "qvarlengtharray.h"
|
|
||||||
#include "private/qlocking_p.h"
|
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
|
||||||
|
|
||||||
QCFString::operator QString() const
|
|
||||||
{
|
|
||||||
if (string.isEmpty() && value)
|
|
||||||
const_cast<QCFString*>(this)->string = QString::fromCFString(value);
|
|
||||||
return string;
|
|
||||||
}
|
|
||||||
|
|
||||||
QCFString::operator CFStringRef() const
|
|
||||||
{
|
|
||||||
if (!value)
|
|
||||||
const_cast<QCFString*>(this)->value = string.toCFString();
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
// --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
#if defined(QT_USE_APPLE_UNIFIED_LOGGING)
|
|
||||||
|
|
||||||
bool AppleUnifiedLogger::willMirrorToStderr()
|
|
||||||
{
|
|
||||||
// When running under Xcode or LLDB, one or more of these variables will
|
|
||||||
// be set, which triggers libsystem_trace.dyld to log messages to stderr
|
|
||||||
// as well, via_os_log_impl_mirror_to_stderr. Un-setting these variables
|
|
||||||
// is not an option, as that would silence normal NSLog or os_log calls,
|
|
||||||
// so instead we skip our own stderr output. See rdar://36919139.
|
|
||||||
static bool willMirror = qEnvironmentVariableIsSet("OS_ACTIVITY_DT_MODE")
|
|
||||||
|| qEnvironmentVariableIsSet("ACTIVITY_LOG_STDERR")
|
|
||||||
|| qEnvironmentVariableIsSet("CFLOG_FORCE_STDERR");
|
|
||||||
return willMirror;
|
|
||||||
}
|
|
||||||
|
|
||||||
QT_MAC_WEAK_IMPORT(_os_log_default);
|
|
||||||
bool AppleUnifiedLogger::messageHandler(QtMsgType msgType, const QMessageLogContext &context,
|
|
||||||
const QString &message, const QString &optionalSubsystem)
|
|
||||||
{
|
|
||||||
QString subsystem = optionalSubsystem;
|
|
||||||
if (subsystem.isNull()) {
|
|
||||||
static QString bundleIdentifier = []() {
|
|
||||||
if (CFBundleRef bundle = CFBundleGetMainBundle()) {
|
|
||||||
if (CFStringRef identifier = CFBundleGetIdentifier(bundle))
|
|
||||||
return QString::fromCFString(identifier);
|
|
||||||
}
|
|
||||||
return QString();
|
|
||||||
}();
|
|
||||||
subsystem = bundleIdentifier;
|
|
||||||
}
|
|
||||||
|
|
||||||
const bool isDefault = !context.category || !strcmp(context.category, "default");
|
|
||||||
os_log_t log = isDefault ? OS_LOG_DEFAULT :
|
|
||||||
cachedLog(subsystem, QString::fromLatin1(context.category));
|
|
||||||
os_log_type_t logType = logTypeForMessageType(msgType);
|
|
||||||
|
|
||||||
if (!os_log_type_enabled(log, logType))
|
|
||||||
return false;
|
|
||||||
|
|
||||||
// Logging best practices says we should not include symbolication
|
|
||||||
// information or source file line numbers in messages, as the system
|
|
||||||
// will automatically captures this information. In our case, what
|
|
||||||
// the system captures is the call to os_log_with_type below, which
|
|
||||||
// isn't really useful, but we still don't want to include the context's
|
|
||||||
// info, as that would clutter the logging output. See rdar://35958308.
|
|
||||||
|
|
||||||
// The format must be a string constant, so we can't pass on the
|
|
||||||
// message. This means we won't be able to take advantage of the
|
|
||||||
// unified logging's custom format specifiers such as %{BOOL}d.
|
|
||||||
// We use the 'public' format specifier to prevent the logging
|
|
||||||
// system from redacting our log message.
|
|
||||||
os_log_with_type(log, logType, "%{public}s", qPrintable(message));
|
|
||||||
|
|
||||||
return willMirrorToStderr();
|
|
||||||
}
|
|
||||||
|
|
||||||
os_log_type_t AppleUnifiedLogger::logTypeForMessageType(QtMsgType msgType)
|
|
||||||
{
|
|
||||||
switch (msgType) {
|
|
||||||
case QtDebugMsg: return OS_LOG_TYPE_DEBUG;
|
|
||||||
case QtInfoMsg: return OS_LOG_TYPE_INFO;
|
|
||||||
case QtWarningMsg: return OS_LOG_TYPE_DEFAULT;
|
|
||||||
case QtCriticalMsg: return OS_LOG_TYPE_ERROR;
|
|
||||||
case QtFatalMsg: return OS_LOG_TYPE_FAULT;
|
|
||||||
}
|
|
||||||
|
|
||||||
return OS_LOG_TYPE_DEFAULT;
|
|
||||||
}
|
|
||||||
|
|
||||||
os_log_t AppleUnifiedLogger::cachedLog(const QString &subsystem, const QString &category)
|
|
||||||
{
|
|
||||||
static QBasicMutex mutex;
|
|
||||||
const auto locker = qt_scoped_lock(mutex);
|
|
||||||
|
|
||||||
static QHash<QPair<QString, QString>, os_log_t> logs;
|
|
||||||
const auto cacheKey = qMakePair(subsystem, category);
|
|
||||||
os_log_t log = logs.value(cacheKey);
|
|
||||||
|
|
||||||
if (!log) {
|
|
||||||
log = os_log_create(subsystem.toLatin1().constData(),
|
|
||||||
category.toLatin1().constData());
|
|
||||||
logs.insert(cacheKey, log);
|
|
||||||
|
|
||||||
// Technically we should release the os_log_t resource when done
|
|
||||||
// with it, but since we don't know when a category is disabled
|
|
||||||
// we keep all cached os_log_t instances until shutdown, where
|
|
||||||
// the OS will clean them up for us.
|
|
||||||
}
|
|
||||||
|
|
||||||
return log;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // QT_USE_APPLE_UNIFIED_LOGGING
|
|
||||||
|
|
||||||
// --------------------------------------------------------------------------
|
|
||||||
|
|
||||||
QT_END_NAMESPACE
|
|
@ -48,6 +48,7 @@
|
|||||||
#include <UIKit/UIKit.h>
|
#include <UIKit/UIKit.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <new>
|
||||||
#include <execinfo.h>
|
#include <execinfo.h>
|
||||||
#include <dlfcn.h>
|
#include <dlfcn.h>
|
||||||
#include <cxxabi.h>
|
#include <cxxabi.h>
|
||||||
@ -55,8 +56,126 @@
|
|||||||
|
|
||||||
#include <qdebug.h>
|
#include <qdebug.h>
|
||||||
|
|
||||||
|
#include "qhash.h"
|
||||||
|
#include "qpair.h"
|
||||||
|
#include "qmutex.h"
|
||||||
|
#include "qvarlengtharray.h"
|
||||||
|
#include "private/qlocking_p.h"
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
QT_BEGIN_NAMESPACE
|
||||||
|
|
||||||
|
// --------------------------------------------------------------------------
|
||||||
|
|
||||||
|
QCFString::operator QString() const
|
||||||
|
{
|
||||||
|
if (string.isEmpty() && value)
|
||||||
|
const_cast<QCFString*>(this)->string = QString::fromCFString(value);
|
||||||
|
return string;
|
||||||
|
}
|
||||||
|
|
||||||
|
QCFString::operator CFStringRef() const
|
||||||
|
{
|
||||||
|
if (!value)
|
||||||
|
const_cast<QCFString*>(this)->value = string.toCFString();
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
// --------------------------------------------------------------------------
|
||||||
|
|
||||||
|
#if defined(QT_USE_APPLE_UNIFIED_LOGGING)
|
||||||
|
|
||||||
|
bool AppleUnifiedLogger::willMirrorToStderr()
|
||||||
|
{
|
||||||
|
// When running under Xcode or LLDB, one or more of these variables will
|
||||||
|
// be set, which triggers libsystem_trace.dyld to log messages to stderr
|
||||||
|
// as well, via_os_log_impl_mirror_to_stderr. Un-setting these variables
|
||||||
|
// is not an option, as that would silence normal NSLog or os_log calls,
|
||||||
|
// so instead we skip our own stderr output. See rdar://36919139.
|
||||||
|
static bool willMirror = qEnvironmentVariableIsSet("OS_ACTIVITY_DT_MODE")
|
||||||
|
|| qEnvironmentVariableIsSet("ACTIVITY_LOG_STDERR")
|
||||||
|
|| qEnvironmentVariableIsSet("CFLOG_FORCE_STDERR");
|
||||||
|
return willMirror;
|
||||||
|
}
|
||||||
|
|
||||||
|
QT_MAC_WEAK_IMPORT(_os_log_default);
|
||||||
|
bool AppleUnifiedLogger::messageHandler(QtMsgType msgType, const QMessageLogContext &context,
|
||||||
|
const QString &message, const QString &optionalSubsystem)
|
||||||
|
{
|
||||||
|
QString subsystem = optionalSubsystem;
|
||||||
|
if (subsystem.isNull()) {
|
||||||
|
static QString bundleIdentifier = []() {
|
||||||
|
if (CFBundleRef bundle = CFBundleGetMainBundle()) {
|
||||||
|
if (CFStringRef identifier = CFBundleGetIdentifier(bundle))
|
||||||
|
return QString::fromCFString(identifier);
|
||||||
|
}
|
||||||
|
return QString();
|
||||||
|
}();
|
||||||
|
subsystem = bundleIdentifier;
|
||||||
|
}
|
||||||
|
|
||||||
|
const bool isDefault = !context.category || !strcmp(context.category, "default");
|
||||||
|
os_log_t log = isDefault ? OS_LOG_DEFAULT :
|
||||||
|
cachedLog(subsystem, QString::fromLatin1(context.category));
|
||||||
|
os_log_type_t logType = logTypeForMessageType(msgType);
|
||||||
|
|
||||||
|
if (!os_log_type_enabled(log, logType))
|
||||||
|
return false;
|
||||||
|
|
||||||
|
// Logging best practices says we should not include symbolication
|
||||||
|
// information or source file line numbers in messages, as the system
|
||||||
|
// will automatically captures this information. In our case, what
|
||||||
|
// the system captures is the call to os_log_with_type below, which
|
||||||
|
// isn't really useful, but we still don't want to include the context's
|
||||||
|
// info, as that would clutter the logging output. See rdar://35958308.
|
||||||
|
|
||||||
|
// The format must be a string constant, so we can't pass on the
|
||||||
|
// message. This means we won't be able to take advantage of the
|
||||||
|
// unified logging's custom format specifiers such as %{BOOL}d.
|
||||||
|
// We use the 'public' format specifier to prevent the logging
|
||||||
|
// system from redacting our log message.
|
||||||
|
os_log_with_type(log, logType, "%{public}s", qPrintable(message));
|
||||||
|
|
||||||
|
return willMirrorToStderr();
|
||||||
|
}
|
||||||
|
|
||||||
|
os_log_type_t AppleUnifiedLogger::logTypeForMessageType(QtMsgType msgType)
|
||||||
|
{
|
||||||
|
switch (msgType) {
|
||||||
|
case QtDebugMsg: return OS_LOG_TYPE_DEBUG;
|
||||||
|
case QtInfoMsg: return OS_LOG_TYPE_INFO;
|
||||||
|
case QtWarningMsg: return OS_LOG_TYPE_DEFAULT;
|
||||||
|
case QtCriticalMsg: return OS_LOG_TYPE_ERROR;
|
||||||
|
case QtFatalMsg: return OS_LOG_TYPE_FAULT;
|
||||||
|
}
|
||||||
|
|
||||||
|
return OS_LOG_TYPE_DEFAULT;
|
||||||
|
}
|
||||||
|
|
||||||
|
os_log_t AppleUnifiedLogger::cachedLog(const QString &subsystem, const QString &category)
|
||||||
|
{
|
||||||
|
static QBasicMutex mutex;
|
||||||
|
const auto locker = qt_scoped_lock(mutex);
|
||||||
|
|
||||||
|
static QHash<QPair<QString, QString>, os_log_t> logs;
|
||||||
|
const auto cacheKey = qMakePair(subsystem, category);
|
||||||
|
os_log_t log = logs.value(cacheKey);
|
||||||
|
|
||||||
|
if (!log) {
|
||||||
|
log = os_log_create(subsystem.toLatin1().constData(),
|
||||||
|
category.toLatin1().constData());
|
||||||
|
logs.insert(cacheKey, log);
|
||||||
|
|
||||||
|
// Technically we should release the os_log_t resource when done
|
||||||
|
// with it, but since we don't know when a category is disabled
|
||||||
|
// we keep all cached os_log_t instances until shutdown, where
|
||||||
|
// the OS will clean them up for us.
|
||||||
|
}
|
||||||
|
|
||||||
|
return log;
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // QT_USE_APPLE_UNIFIED_LOGGING
|
||||||
|
|
||||||
// -------------------------------------------------------------------------
|
// -------------------------------------------------------------------------
|
||||||
|
|
||||||
QDebug operator<<(QDebug dbg, const NSObject *nsObject)
|
QDebug operator<<(QDebug dbg, const NSObject *nsObject)
|
@ -138,11 +138,8 @@ win32:SOURCES += ../../corelib/global/qoperatingsystemversion_win.cpp \
|
|||||||
mac {
|
mac {
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
../../corelib/kernel/qcoreapplication_mac.cpp \
|
../../corelib/kernel/qcoreapplication_mac.cpp \
|
||||||
../../corelib/kernel/qcore_mac.cpp
|
../../corelib/kernel/qcore_mac.mm \
|
||||||
|
|
||||||
OBJECTIVE_SOURCES += \
|
|
||||||
../../corelib/global/qoperatingsystemversion_darwin.mm \
|
../../corelib/global/qoperatingsystemversion_darwin.mm \
|
||||||
../../corelib/kernel/qcore_mac_objc.mm \
|
|
||||||
../../corelib/kernel/qcore_foundation.mm
|
../../corelib/kernel/qcore_foundation.mm
|
||||||
|
|
||||||
LIBS += -framework Foundation
|
LIBS += -framework Foundation
|
||||||
|
Loading…
Reference in New Issue
Block a user