Update ipak file logic.
This commit is contained in:
parent
1b6aeefb49
commit
0ae2ec4a27
@ -1,6 +1,6 @@
|
||||
QT += core widgets
|
||||
TEMPLATE = lib
|
||||
CONFIG += staticlib c++17 debug
|
||||
CONFIG += staticlib c++17
|
||||
|
||||
SOURCES += \
|
||||
logmanager.cpp \
|
||||
|
||||
@ -7,7 +7,9 @@ enum FF_PLATFORM {
|
||||
FF_PLATFORM_NONE = 0x00, // No platform
|
||||
FF_PLATFORM_XBOX = 0x01, // Xbox 360
|
||||
FF_PLATFORM_PS3 = 0x02, // Playstation 3
|
||||
FF_PLATFORM_PC = 0x03 // PC
|
||||
FF_PLATFORM_PC = 0x03, // PC
|
||||
FF_PLATFORM_WII = 0x04, // WII
|
||||
FF_PLATFORM_WIIU = 0x05 // WII U
|
||||
};
|
||||
|
||||
enum FF_GAME {
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
#include "logmanager.h"
|
||||
#include "qdebug.h"
|
||||
|
||||
void LogManager::addEntry(const QString &entry) {
|
||||
qDebug() << entry;
|
||||
emit entryAdded(entry);
|
||||
}
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
QT += core
|
||||
TEMPLATE = lib
|
||||
CONFIG += staticlib c++17 debug
|
||||
CONFIG += staticlib c++17
|
||||
|
||||
SOURCES += \
|
||||
ipakfile.cpp
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user