gta5view-cmd/gta5view-cmd.pro

56 lines
1.6 KiB
Prolog
Raw Normal View History

2017-03-04 19:36:47 +01:00
#/*****************************************************************************
#* gta5view-cmd - gta5view Command Line
2020-10-21 08:14:58 +02:00
#* Copyright (C) 2017-2020 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 \
2020-11-15 13:19:18 +01:00
gta5view/RagePhoto.cpp \
2018-06-29 11:48:15 +02:00
gta5view/SnapmaticPicture.cpp
2017-03-04 19:36:47 +01:00
HEADERS += \
2020-11-15 13:19:18 +01:00
gta5view/RagePhoto.h \
2018-06-29 11:48:15 +02:00
gta5view/SnapmaticPicture.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
2020-10-21 08:14:58 +02:00
DEFINES += SNAPMATIC_NODEFAULT
2018-08-14 01:50:59 +02:00
2017-03-04 19:36:47 +01:00
# WINDOWS ONLY
win32: DEFINES += GTA5SYNC_WIN
2018-06-29 11:48:15 +02:00
win32: RC_FILE += res/app.rc
2017-03-04 19:36:47 +01:00
win32: CONFIG -= embed_manifest_exe
2017-08-29 15:23:14 +02:00
RESOURCES += \
res.qrc
2018-02-01 02:07:26 +01:00
2018-06-29 11:48:15 +02:00
DISTFILES += \
res\5sync.ico \
res\app.rc \
res\gta5view-cmd.exe.manifest
2018-02-01 02:07:26 +01:00
isEmpty(GTA5SYNC_PREFIX): GTA5SYNC_PREFIX = /usr/local
target.path = $$GTA5SYNC_PREFIX/bin
INSTALLS += target