mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-10 05:34:17 +00:00
22 lines
475 B
Prolog
22 lines
475 B
Prolog
QT -= core gui
|
|
|
|
TARGET = AntiHooking
|
|
TEMPLATE = lib
|
|
|
|
include(../globaldefs.pri)
|
|
|
|
INCLUDEPATH += $$PWD/../libs/windows/include
|
|
contains(QT_ARCH, i386) {
|
|
LIBS += -L$$PWD/../libs/windows/lib/x86
|
|
}
|
|
contains(QT_ARCH, x86_64) {
|
|
LIBS += -L$$PWD/../libs/windows/lib/x64
|
|
}
|
|
contains(QT_ARCH, arm64) {
|
|
LIBS += -L$$PWD/../libs/windows/lib/arm64
|
|
}
|
|
|
|
LIBS += -ldetours
|
|
DEFINES += ANTIHOOKING_LIBRARY
|
|
SOURCES += antihookingprotection.cpp
|
|
HEADERS += antihookingprotection.h
|