2018-10-14 02:35:21 +00:00
|
|
|
QT -= core gui
|
|
|
|
|
|
|
|
TARGET = AntiHooking
|
|
|
|
TEMPLATE = lib
|
|
|
|
|
2019-04-21 18:08:33 +00:00
|
|
|
include(../globaldefs.pri)
|
2018-10-14 02:35:21 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|
2022-03-09 02:58:40 +00:00
|
|
|
contains(QT_ARCH, arm64) {
|
|
|
|
LIBS += -L$$PWD/../libs/windows/lib/arm64
|
|
|
|
}
|
2018-10-14 02:35:21 +00:00
|
|
|
|
2022-03-09 02:58:40 +00:00
|
|
|
LIBS += -ldetours
|
2018-10-14 02:35:21 +00:00
|
|
|
DEFINES += ANTIHOOKING_LIBRARY
|
|
|
|
SOURCES += antihookingprotection.cpp
|
|
|
|
HEADERS += antihookingprotection.h
|