mirror of
https://gitlab.com/Syping/gta5view-cmd
synced 2024-12-04 03:10:22 +01:00
change submodule to gta5view
This commit is contained in:
parent
0c5340919f
commit
8ccfcc20f0
5 changed files with 475 additions and 496 deletions
1
gta5sync
1
gta5sync
|
@ -1 +0,0 @@
|
|||
Subproject commit 15fd35642534a3f46046a5cc2bf27f41e77b14f5
|
1
gta5view
Submodule
1
gta5view
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 12f8430f343b80ad1be717c587329686720f6725
|
|
@ -1,6 +1,6 @@
|
|||
#/*****************************************************************************
|
||||
#* gta5view-cmd - gta5view Command Line
|
||||
#* Copyright (C) 2017 Syping
|
||||
#* Copyright (C) 2017-2018 Syping
|
||||
#*
|
||||
#* This program is free software: you can redistribute it and/or modify
|
||||
#* it under the terms of the GNU General Public License as published by
|
||||
|
@ -25,42 +25,21 @@ TEMPLATE = app
|
|||
CONFIG += console
|
||||
|
||||
SOURCES += main.cpp \
|
||||
gta5sync/SnapmaticPicture.cpp \
|
||||
gta5sync/StringParser.cpp
|
||||
gta5view/SnapmaticPicture.cpp \
|
||||
gta5view/StringParser.cpp
|
||||
|
||||
HEADERS += \
|
||||
gta5sync/SnapmaticPicture.h \
|
||||
gta5sync/StringParser.h
|
||||
gta5view/SnapmaticPicture.h \
|
||||
gta5view/StringParser.h
|
||||
|
||||
INCLUDEPATH += ./gta5sync
|
||||
INCLUDEPATH += ./gta5view
|
||||
|
||||
# WINDOWS ONLY
|
||||
|
||||
win32: DEFINES += GTA5SYNC_WIN
|
||||
# win32: RC_FILE += res/app.rc
|
||||
win32: LIBS += -luser32
|
||||
win32: CONFIG -= embed_manifest_exe
|
||||
|
||||
# QT4 ONLY STUFF
|
||||
|
||||
isEqual(QT_MAJOR_VERSION, 4): INCLUDEPATH += ./gta5sync/qjson4
|
||||
isEqual(QT_MAJOR_VERSION, 4): HEADERS += gta5sync/qjson4/QJsonArray.h \
|
||||
gta5sync/qjson4/QJsonDocument.h \
|
||||
gta5sync/qjson4/QJsonObject.h \
|
||||
gta5sync/qjson4/QJsonParseError.h \
|
||||
gta5sync/qjson4/QJsonValue.h \
|
||||
gta5sync/qjson4/QJsonValueRef.h \
|
||||
gta5sync/qjson4/QJsonParser.h \
|
||||
gta5sync/qjson4/QJsonRoot.h
|
||||
|
||||
isEqual(QT_MAJOR_VERSION, 4): SOURCES += gta5sync/qjson4/QJsonArray.cpp \
|
||||
gta5sync/qjson4/QJsonDocument.cpp \
|
||||
gta5sync/qjson4/QJsonObject.cpp \
|
||||
gta5sync/qjson4/QJsonParseError.cpp \
|
||||
gta5sync/qjson4/QJsonValue.cpp \
|
||||
gta5sync/qjson4/QJsonValueRef.cpp \
|
||||
gta5sync/qjson4/QJsonParser.cpp
|
||||
|
||||
RESOURCES += \
|
||||
res.qrc
|
||||
|
||||
|
|
4
main.cpp
4
main.cpp
|
@ -1,6 +1,6 @@
|
|||
/*****************************************************************************
|
||||
* gta5view-cmd - gta5view Command Line
|
||||
* Copyright (C) 2017 Syping
|
||||
* Copyright (C) 2017-2018 Syping
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@ -16,7 +16,7 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*****************************************************************************/
|
||||
|
||||
#include "SnapmaticPicture.h"
|
||||
#include "gta5view/SnapmaticPicture.h"
|
||||
#include <QCoreApplication>
|
||||
#include <QImageReader>
|
||||
#include <QDateTime>
|
||||
|
|
2
res.qrc
2
res.qrc
|
@ -1,5 +1,5 @@
|
|||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file alias="template.g5e">gta5sync/res/template.g5e</file>
|
||||
<file alias="template.g5e">gta5view/res/template.g5e</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
|
Loading…
Reference in a new issue