Some work about adaptive color scheme for Web UI (PR #19901)
http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
726 B
36 lines
726 B
INCLUDEPATH += $$PWD |
|
|
|
usesystemqtsingleapplication { |
|
nogui { |
|
CONFIG += qtsinglecoreapplication |
|
} else { |
|
CONFIG += qtsingleapplication |
|
} |
|
} else { |
|
nogui { |
|
include(qtsingleapplication/qtsinglecoreapplication.pri) |
|
} else { |
|
include(qtsingleapplication/qtsingleapplication.pri) |
|
} |
|
} |
|
|
|
HEADERS += \ |
|
$$PWD/application.h \ |
|
$$PWD/filelogger.h |
|
|
|
SOURCES += \ |
|
$$PWD/application.cpp \ |
|
$$PWD/filelogger.cpp \ |
|
$$PWD/main.cpp |
|
|
|
unix: HEADERS += $$PWD/stacktrace.h |
|
strace_win { |
|
HEADERS += $$PWD/stacktrace_win.h |
|
!nogui { |
|
HEADERS += $$PWD/stacktrace_win_dlg.h |
|
FORMS += $$PWD/stacktrace_win_dlg.ui |
|
} |
|
} |
|
|
|
# upgrade code |
|
HEADERS += $$PWD/upgrade.h
|
|
|