mirror of https://github.com/Nheko-Reborn/nheko
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.
20 lines
386 B
20 lines
386 B
QT += core network
|
|
CONFIG += c++11
|
|
|
|
HEADERS += $$PWD/SingleApplication \
|
|
$$PWD/singleapplication.h \
|
|
$$PWD/singleapplication_p.h
|
|
SOURCES += $$PWD/singleapplication.cpp \
|
|
$$PWD/singleapplication_p.cpp
|
|
|
|
INCLUDEPATH += $$PWD
|
|
|
|
win32 {
|
|
msvc:LIBS += Advapi32.lib
|
|
gcc:LIBS += -ladvapi32
|
|
}
|
|
|
|
DISTFILES += \
|
|
$$PWD/README.md \
|
|
$$PWD/CHANGELOG.md \
|
|
$$PWD/Windows.md
|
|
|