mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
21 lines
386 B
Text
21 lines
386 B
Text
|
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
|