mirror of
https://github.com/itay-grudev/SingleApplication.git
synced 2024-11-15 04:05:43 +08:00
21 lines
386 B
Plaintext
21 lines
386 B
Plaintext
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
|