-
Notifications
You must be signed in to change notification settings - Fork 9
/
Test.pro
67 lines (48 loc) · 1.66 KB
/
Test.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#-------------------------------------------------
#
# Project created by QtCreator 2015-10-02T04:01:10
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = Test
TEMPLATE = app
SOURCES += main.cpp\
# mythread.cpp \
mainwindow.cpp \
inject.cpp \
loadll.cpp \
loadwapper.cpp \
pebhider.cpp \
mmap.cpp \
getmod.cpp
HEADERS += inject.h\
# mythread.h \
mainwindow.h \
antis.h
OBJECTS += ..\Pload.o \
#Aasm.o \
FORMS += mainwindow.ui
DEFINES += QT_NO_DEBUG QT_NO_CAST_TO_ASCII
DEFINES -= QT_LARGEFILE_SUPPORT UNICODE
CONFIG += windows #DEV
DEV{
DEFINES+= DEV
message("~~~ DEV ~~~")
}
x64 {
message("~~~ Win64 ~~~")
OBJECTS -= ..\Pload.o
OBJECTS += ..\Pload64.o
DEFINES+= _WIN64
}
#QTPLUGIN = qico
RC_FILE = myrc.rc
#RESOURCES = a.qrc
#QMAKE_CFLAGS = -Ofast -march=native -fomit-frame-pointer -Wno-missing-field-initializers -fpermissive
QMAKE_CXXFLAGS = -O2 -fomit-frame-pointer -march=sandybridge -Wno-shift-count-overflow -Wno-unused-local-typedefs -Wno-attributes -Wno-int-in-bool-context -Wno-missing-field-initializers -Wno-format -fpermissive
QMAKE_LIBS = -Wl,-Bdynamic -lgdi32 -luser32 -lkernel32 -lpsapi -lShlwapi -lOleAut32
QMAKE_LFLAGS = -static-libstdc++ -static-libgcc -lpthread
#QMAKE_LIBS = -Wl,-Bstatic -lstdc++ -lpthread -lqtmain -LC:/Qt/Static2/5.7/plugins/platforms -lqwindows -LC:/Qt/Static2/5.7/plugins/imageformats -lqico -lQt5Core -Wl,-Bdynamic -lgdi32 -luser32 -lkernel32
DISTFILES += \
myrc.rc \