gta5view/gta5sync.pro

100 lines
2.6 KiB
Prolog
Raw Normal View History

2016-02-26 22:22:34 +01:00
#/*****************************************************************************
#* gta5sync GRAND THEFT AUTO V SYNC
#* Copyright (C) 2015-2016 Syping
2016-02-26 22:22:34 +01:00
#*
2016-03-21 07:54:14 +01:00
#* 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
#* the Free Software Foundation, either version 3 of the License, or
#* (at your option) any later version.
2016-02-26 22:22:34 +01:00
#*
2016-03-21 07:54:14 +01:00
#* This program is distributed in the hope that it will be useful,
#* but WITHOUT ANY WARRANTY; without even the implied warranty of
#* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#* GNU General Public License for more details.
2016-02-26 22:22:34 +01:00
#*
2016-03-21 07:54:14 +01:00
#* You should have received a copy of the GNU General Public License
#* along with this program. If not, see <http://www.gnu.org/licenses/>.
2016-02-26 22:22:34 +01:00
#*****************************************************************************/
2016-03-22 05:20:42 +01:00
QT += core gui network
2016-02-26 22:22:34 +01:00
2016-03-21 23:18:10 +01:00
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
2016-03-21 20:44:07 +01:00
isEqual(QT_MAJOR_VERSION, 5): DEFINES += QT5_MODE
2016-02-26 22:22:34 +01:00
TARGET = gta5sync
TEMPLATE = app
2016-03-23 09:10:46 +01:00
SOURCES += main.cpp \
2016-03-20 21:57:18 +01:00
SnapmaticPicture.cpp \
2016-03-22 05:20:42 +01:00
PictureDialog.cpp \
ProfileDatabase.cpp \
DatabaseThread.cpp \
2016-03-23 01:09:27 +01:00
CrewDatabase.cpp \
2016-03-23 02:08:16 +01:00
SavegameData.cpp \
SavegameDialog.cpp \
SyncFramework.cpp \
UserInterface.cpp \
2016-03-25 07:07:58 +01:00
ProfileInterface.cpp \
SnapmaticWidget.cpp \
SavegameWidget.cpp \
ProfileLoader.cpp \
AboutDialog.cpp
2016-02-26 22:22:34 +01:00
2016-03-20 21:57:18 +01:00
HEADERS += \
SnapmaticPicture.h \
2016-03-22 05:20:42 +01:00
PictureDialog.h \
ProfileDatabase.h \
DatabaseThread.h \
2016-03-23 01:09:27 +01:00
CrewDatabase.h \
2016-03-23 02:08:16 +01:00
SavegameData.h \
SavegameDialog.h \
SyncFramework.h \
UserInterface.h \
2016-03-25 07:07:58 +01:00
ProfileInterface.h \
SnapmaticWidget.h \
SavegameWidget.h \
ProfileLoader.h \
AboutDialog.h
2016-02-26 22:22:34 +01:00
2016-03-20 21:57:18 +01:00
FORMS += \
2016-03-23 02:08:16 +01:00
PictureDialog.ui \
SavegameDialog.ui \
UserInterface.ui \
2016-03-25 07:07:58 +01:00
ProfileInterface.ui \
SnapmaticWidget.ui \
SavegameWidget.ui \
AboutDialog.ui
2016-02-27 01:06:24 +01:00
2016-03-23 08:53:37 +01:00
TRANSLATIONS += \
gta5sync_de.ts
2016-03-23 09:10:46 +01:00
RESOURCES += \
app.qrc
2016-03-20 21:57:18 +01:00
2016-03-23 08:53:37 +01:00
OTHER_FILES += \
app.rc
2016-03-21 20:44:07 +01:00
win32: RC_FILE += app.rc
2016-03-21 07:54:14 +01:00
# QT4 ONLY STUFF
isEqual(QT_MAJOR_VERSION, 4): INCLUDEPATH += ./qjson4
isEqual(QT_MAJOR_VERSION, 4): HEADERS += qjson4/QJsonArray.h \
qjson4/QJsonDocument.h \
qjson4/QJsonObject.h \
qjson4/QJsonParseError.h \
qjson4/QJsonValue.h \
qjson4/QJsonValueRef.h \
qjson4/QJsonParser.h \
qjson4/QJsonRoot.h
isEqual(QT_MAJOR_VERSION, 4): SOURCES += qjson4/QJsonArray.cpp \
qjson4/QJsonDocument.cpp \
qjson4/QJsonObject.cpp \
qjson4/QJsonParseError.cpp \
qjson4/QJsonValue.cpp \
qjson4/QJsonValueRef.cpp \
qjson4/QJsonParser.cpp