Build fix
This commit is contained in:
parent
0ba614961d
commit
b93dd8cb9b
5 changed files with 10 additions and 10 deletions
|
@ -77,7 +77,7 @@ HEADERS += \
|
|||
loghandler.h \
|
||||
loglevel.h \
|
||||
constants.h \
|
||||
platforms/ios/QRCodeReader.h
|
||||
platforms/ios/QRCodeReaderBase.h
|
||||
|
||||
SOURCES += \
|
||||
configurators/cloak_configurator.cpp \
|
||||
|
@ -130,7 +130,7 @@ SOURCES += \
|
|||
protocols/vpnprotocol.cpp \
|
||||
logger.cpp \
|
||||
loghandler.cpp \
|
||||
platforms/ios/QRCodeReader.cpp
|
||||
platforms/ios/QRCodeReaderBase.cpp
|
||||
|
||||
RESOURCES += \
|
||||
resources.qrc
|
||||
|
@ -312,7 +312,7 @@ ios {
|
|||
platforms/ios/iosglue.mm \
|
||||
platforms/ios/ipaddress.cpp \
|
||||
platforms/ios/ipaddressrange.cpp \
|
||||
platforms/ios/QRCodeReader.mm
|
||||
platforms/ios/QRCodeReaderBase.mm
|
||||
|
||||
Q_ENABLE_BITCODE.value = NO
|
||||
Q_ENABLE_BITCODE.name = ENABLE_BITCODE
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
|
||||
#include "QZXing.h"
|
||||
|
||||
#include "platforms/ios/QRCodeReader.h"
|
||||
#include "platforms/ios/QRCodeReaderBase.h"
|
||||
|
||||
#include "debug.h"
|
||||
#include "defines.h"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "QRCodeReader.h"
|
||||
#include "QRCodeReaderBase.h"
|
||||
|
||||
QRCodeReader::QRCodeReader()
|
||||
{
|
||||
|
@ -11,4 +11,4 @@ QRect QRCodeReader::cameraSize() {
|
|||
|
||||
void QRCodeReader::startReading() {}
|
||||
void QRCodeReader::stopReading() {}
|
||||
void QRCodeReader::setCameraSize(QRect) {};
|
||||
void QRCodeReader::setCameraSize(QRect) {}
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef QRCODEREADER_H
|
||||
#define QRCODEREADER_H
|
||||
#ifndef QRCODEREADERBASE_H
|
||||
#define QRCODEREADERBASE_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QRect>
|
||||
|
@ -25,4 +25,4 @@ private:
|
|||
QRect m_cameraSize;
|
||||
};
|
||||
|
||||
#endif // QRCODEREADER_H
|
||||
#endif // QRCODEREADERBASE_H
|
|
@ -1,4 +1,4 @@
|
|||
#include "QRCodeReader.h"
|
||||
#include "QRCodeReaderBase.h"
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import <AVFoundation/AVFoundation.h>
|
Loading…
Add table
Add a link
Reference in a new issue