This repository was archived by the owner on Oct 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgta5view-cmd.pro
More file actions
48 lines (38 loc) · 1.45 KB
/
gta5view-cmd.pro
File metadata and controls
48 lines (38 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#/*****************************************************************************
#* gta5view-cmd - gta5view Command Line
#* 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
#* 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/>.
#*****************************************************************************/
QT += gui
DEPLOYMENT.display_name = gta5view-cmd
TARGET = gta5view-cmd
TEMPLATE = app
CONFIG += console
SOURCES += main.cpp \
gta5view/SnapmaticPicture.cpp \
gta5view/StringParser.cpp
HEADERS += \
gta5view/SnapmaticPicture.h \
gta5view/StringParser.h
INCLUDEPATH += ./gta5view
# WINDOWS ONLY
win32: DEFINES += GTA5SYNC_WIN
# win32: RC_FILE += res/app.rc
win32: CONFIG -= embed_manifest_exe
RESOURCES += \
res.qrc
isEmpty(GTA5SYNC_PREFIX): GTA5SYNC_PREFIX = /usr/local
target.path = $$GTA5SYNC_PREFIX/bin
INSTALLS += target