-
Notifications
You must be signed in to change notification settings - Fork 1
/
test_oc.pro
68 lines (59 loc) · 1.09 KB
/
test_oc.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
QT += core
QT -= gui
TARGET = oc
CONFIG += console
CONFIG -= app_bundle
TEMPLATE = app
SOURCES += \
i386_gen.c \
i386_link.c \
arm_gen.c \
arm_link.c \
x86_64_gen.c \
x86_64_link.c \
arm64_gen.c \
arm64_link.c \
tccelf.c \
tcccoff.c \
tccpe.c \
helper.c \
values.c \
generator.c \
tccstate.c \
symbols.c \
types.c \
oparser.c \
ccdriver.c \
token.c \
machine.c
# TCC_ARM_EABI TCC_ARM_VFP TCC_TARGET_PE
# TCC_TARGET_I386 TCC_TARGET_X86_64 TCC_TARGET_ARM TCC_TARGET_ARM64
DEFINES += TCC_TARGET_I386
HEADERS += \
i386.h \
x86_64.h \
arm.h \
arm64.h \
symbols.h \
tcc.h \
values.h \
types.h \
architecture.h \
vstack.h \
elf.h \
tccelf.h \
token.h \
coff.h \
i386_tok.h \
i386_asm.h \
x86_64_asm.h \
tccpe.h \
helper.h \
generator.h \
tccstate.h \
tcctok.h \
cparser.h \
stab.h \
machine.h
QMAKE_CFLAGS += -Wno-unused-parameter -Wno-unused-function -Wno-unused-variable -Wno-sign-compare -Werror
LIBS += -ldl