-
Notifications
You must be signed in to change notification settings - Fork 0
/
trol.pro
37 lines (27 loc) · 988 Bytes
/
trol.pro
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
#-------------------------------------------------
# The Rollecoaster of Love [TROL]
# Project configuration sexyness
#-------------------------------------------------
QT += core gui network svg
TARGET = trol
TEMPLATE = app
CONFIG += warn_on
#-------------------------------------------------
# File config
#-------------------------------------------------
warning(Using undocumented feature $$files. Must test on lambda machines.)
SOURCES += $$files(*.cpp)
HEADERS += $$files(*.h)
FORMS += $$files(*.ui)
RESOURCES += $$files(*.qrc)
#-------------------------------------------------
# Build step: Mirrorring dropbox's img folder
#-------------------------------------------------
win32 {
dropbox_image_sync.commands += @call $${PWD}/scripts/mirror_images.bat
}
unix {
dropbox_image_sync.commands += @echo Dropbox image sync not implemented.
}
QMAKE_EXTRA_TARGETS += dropbox_image_sync
PRE_TARGETDEPS += dropbox_image_sync