forked from JohnCiubuc/StreamLinkerino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstreamlinkerino.pro
68 lines (53 loc) · 1.19 KB
/
streamlinkerino.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
QT += core gui \
network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++11
SOURCES += \
src/chatterino/chatterinojson.cpp \
src/main.cpp \
src/mainwindow.cpp \
src/settings.cpp \
src/settingsdialog.cpp \
src/type.cpp
HEADERS += \
src/chatterino/chatterinojson.h \
src/debug.h \
src/mainwindow.h \
src/os/darkmode.h \
src/os/path.h \
src/settings.h \
src/settingsdialog.h \
src/type.h
FORMS += \
src/Forms/mainwindow.ui \
src/Forms/settingsDialog.ui
LIBS += -luser32
linux-g++ | linux-g++-64 | linux-g++-32 {
INCLUDEPATH += \
src/os \
src/os/linux \
src/chatterino
SOURCES += \
src/os/linux/native.cpp \
src/os/linux/path.cpp
HEADERS += \
src/os/linux/native.h
}
win32 {
INCLUDEPATH += \
src/os \
src/os/windows \
src/chatterino
SOURCES += \
src/os/windows/native.cpp \
src/os/windows/path.cpp \
src/os/windows/windark.cpp
HEADERS += \
src/os/windows/native.h \
src/os/windows/windark.h
RC_ICONS = resource/Streamlinkerinoicon.ico
}
DISTFILES += \
CMakeLists.txt \
RESOURCES += \
icon.qrc