2017-03-04 19:36:47 +01:00
|
|
|
#/*****************************************************************************
|
|
|
|
#* gta5view-cmd - gta5view Command Line
|
2018-02-21 12:11:43 +01:00
|
|
|
#* Copyright (C) 2017-2018 Syping
|
2017-03-04 19:36:47 +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.
|
|
|
|
#*
|
|
|
|
#* 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.
|
|
|
|
#*
|
|
|
|
#* You should have received a copy of the GNU General Public License
|
|
|
|
#* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#*****************************************************************************/
|
|
|
|
|
2017-03-04 19:48:15 +01:00
|
|
|
QT += gui
|
2017-03-04 19:36:47 +01:00
|
|
|
|
|
|
|
DEPLOYMENT.display_name = gta5view-cmd
|
|
|
|
TARGET = gta5view-cmd
|
|
|
|
TEMPLATE = app
|
|
|
|
|
2017-03-04 19:48:15 +01:00
|
|
|
CONFIG += console
|
|
|
|
|
2017-03-04 19:36:47 +01:00
|
|
|
SOURCES += main.cpp \
|
2018-02-21 12:11:43 +01:00
|
|
|
gta5view/SnapmaticPicture.cpp \
|
|
|
|
gta5view/StringParser.cpp
|
2017-03-04 19:36:47 +01:00
|
|
|
|
|
|
|
HEADERS += \
|
2018-02-21 12:11:43 +01:00
|
|
|
gta5view/SnapmaticPicture.h \
|
|
|
|
gta5view/StringParser.h
|
2017-03-04 19:36:47 +01:00
|
|
|
|
2018-02-21 12:11:43 +01:00
|
|
|
INCLUDEPATH += ./gta5view
|
2017-03-04 19:36:47 +01:00
|
|
|
|
|
|
|
# WINDOWS ONLY
|
|
|
|
|
2017-10-11 11:28:22 +02:00
|
|
|
win32: DEFINES += GTA5SYNC_WIN
|
2017-03-04 19:36:47 +01:00
|
|
|
# win32: RC_FILE += res/app.rc
|
|
|
|
win32: CONFIG -= embed_manifest_exe
|
|
|
|
|
2017-08-29 15:23:14 +02:00
|
|
|
RESOURCES += \
|
|
|
|
res.qrc
|
2018-02-01 02:07:26 +01:00
|
|
|
|
|
|
|
isEmpty(GTA5SYNC_PREFIX): GTA5SYNC_PREFIX = /usr/local
|
|
|
|
target.path = $$GTA5SYNC_PREFIX/bin
|
|
|
|
INSTALLS += target
|