forked from fotowall/fotowall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fotowall.pri
40 lines (35 loc) · 1.07 KB
/
fotowall.pri
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
# Fotowall input files
HEADERS += \
#3rdparty/gsuggest.h
SOURCES += \
#3rdparty/gsuggest.cpp \
main.cpp
RESOURCES += \
fotowall.qrc
# More input files
include(App/App.pri)
include(Canvas/Canvas.pri)
include(Frames/Frames.pri)
include(Shared/Shared.pri)
include(Wordcloud/Wordcloud.pri)
include(3rdparty/likebackfrontend/likebackfrontend.pri)
include(3rdparty/pencil/pencil.pri)
include(3rdparty/qtcolortriangle/qtcolortriangle.pri)
include(3rdparty/richtextedit/richtextedit.pri)
include(3rdparty/videocapture/videocapture.pri)
# Include Fotowall translations (of the above components)
!contains(CONFIG, no-translations): {
DEFINES += HAS_TRANSLATIONS
TRANSLATIONS += \
translations/fotowall_zh_CN.ts \
translations/fotowall_de.ts \
translations/fotowall_en.ts \
translations/fotowall_es.ts \
translations/fotowall_fr.ts \
translations/fotowall_it.ts \
translations/fotowall_pl.ts \
translations/fotowall_pt_BR.ts
} else: {
message("Translations won't be compiled")
DEFINES -= HAS_TRANSLATIONS
}