mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-23 02:00:20 +07:00
Build fix
This commit is contained in:
+3
-3
@@ -77,7 +77,7 @@ HEADERS += \
|
|||||||
loghandler.h \
|
loghandler.h \
|
||||||
loglevel.h \
|
loglevel.h \
|
||||||
constants.h \
|
constants.h \
|
||||||
platforms/ios/QRCodeReader.h
|
platforms/ios/QRCodeReaderBase.h
|
||||||
|
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
configurators/cloak_configurator.cpp \
|
configurators/cloak_configurator.cpp \
|
||||||
@@ -130,7 +130,7 @@ SOURCES += \
|
|||||||
protocols/vpnprotocol.cpp \
|
protocols/vpnprotocol.cpp \
|
||||||
logger.cpp \
|
logger.cpp \
|
||||||
loghandler.cpp \
|
loghandler.cpp \
|
||||||
platforms/ios/QRCodeReader.cpp
|
platforms/ios/QRCodeReaderBase.cpp
|
||||||
|
|
||||||
RESOURCES += \
|
RESOURCES += \
|
||||||
resources.qrc
|
resources.qrc
|
||||||
@@ -312,7 +312,7 @@ ios {
|
|||||||
platforms/ios/iosglue.mm \
|
platforms/ios/iosglue.mm \
|
||||||
platforms/ios/ipaddress.cpp \
|
platforms/ios/ipaddress.cpp \
|
||||||
platforms/ios/ipaddressrange.cpp \
|
platforms/ios/ipaddressrange.cpp \
|
||||||
platforms/ios/QRCodeReader.mm
|
platforms/ios/QRCodeReaderBase.mm
|
||||||
|
|
||||||
Q_ENABLE_BITCODE.value = NO
|
Q_ENABLE_BITCODE.value = NO
|
||||||
Q_ENABLE_BITCODE.name = ENABLE_BITCODE
|
Q_ENABLE_BITCODE.name = ENABLE_BITCODE
|
||||||
|
|||||||
+1
-1
@@ -37,7 +37,7 @@
|
|||||||
|
|
||||||
#include "QZXing.h"
|
#include "QZXing.h"
|
||||||
|
|
||||||
#include "platforms/ios/QRCodeReader.h"
|
#include "platforms/ios/QRCodeReaderBase.h"
|
||||||
|
|
||||||
#include "debug.h"
|
#include "debug.h"
|
||||||
#include "defines.h"
|
#include "defines.h"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#include "QRCodeReader.h"
|
#include "QRCodeReaderBase.h"
|
||||||
|
|
||||||
QRCodeReader::QRCodeReader()
|
QRCodeReader::QRCodeReader()
|
||||||
{
|
{
|
||||||
@@ -11,4 +11,4 @@ QRect QRCodeReader::cameraSize() {
|
|||||||
|
|
||||||
void QRCodeReader::startReading() {}
|
void QRCodeReader::startReading() {}
|
||||||
void QRCodeReader::stopReading() {}
|
void QRCodeReader::stopReading() {}
|
||||||
void QRCodeReader::setCameraSize(QRect) {};
|
void QRCodeReader::setCameraSize(QRect) {}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef QRCODEREADER_H
|
#ifndef QRCODEREADERBASE_H
|
||||||
#define QRCODEREADER_H
|
#define QRCODEREADERBASE_H
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QRect>
|
#include <QRect>
|
||||||
@@ -25,4 +25,4 @@ private:
|
|||||||
QRect m_cameraSize;
|
QRect m_cameraSize;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // QRCODEREADER_H
|
#endif // QRCODEREADERBASE_H
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
#include "QRCodeReader.h"
|
#include "QRCodeReaderBase.h"
|
||||||
|
|
||||||
#import <UIKit/UIKit.h>
|
#import <UIKit/UIKit.h>
|
||||||
#import <AVFoundation/AVFoundation.h>
|
#import <AVFoundation/AVFoundation.h>
|
||||||
Reference in New Issue
Block a user