This repository has been archived by the owner on Jan 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
executable file
·193 lines (190 loc) · 2.74 KB
/
CMakeLists.txt
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
cmake_minimum_required(VERSION 3.3)
project(xv6)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(SOURCE_FILES
dist/asm.h
dist/bio.c
dist/bootasm.S
dist/bootmain.c
dist/buf.h
dist/cat.c
dist/console.c
dist/defs.h
dist/dot-bochsrc
dist/echo.c
dist/elf.h
dist/entry.S
dist/entryother.S
dist/exec.c
dist/fcntl.h
dist/file.c
dist/file.h
dist/forktest.c
dist/fs.c
dist/fs.h
dist/gdbutil
dist/grep.c
dist/ide.c
dist/init.c
dist/initcode.S
dist/ioapic.c
dist/kalloc.c
dist/kbd.c
dist/kbd.h
dist/kill.c
dist/lapic.c
dist/ln.c
dist/log.c
dist/ls.c
dist/main.c
dist/Makefile
dist/memlayout.h
dist/mkdir.c
dist/mkfs.c
dist/mmu.h
dist/mp.c
dist/mp.h
dist/param.h
dist/picirq.c
dist/pipe.c
dist/pr.pl
dist/printf.c
dist/proc.c
dist/proc.h
dist/README
dist/rm.c
dist/runoff
dist/runoff.list
dist/runoff.spec
dist/runoff1
dist/sh.c
dist/sign.pl
dist/spinlock.c
dist/spinlock.h
dist/stat.h
dist/stressfs.c
dist/string.c
dist/swtch.S
dist/syscall.c
dist/syscall.h
dist/sysfile.c
dist/sysproc.c
dist/timer.c
dist/toc.ftr
dist/toc.hdr
dist/trap.c
dist/trapasm.S
dist/traps.h
dist/types.h
dist/uart.c
dist/ulib.c
dist/umalloc.c
dist/user.h
dist/usertests.c
dist/usys.S
dist/vectors.pl
dist/vm.c
dist/wc.c
dist/x86.h
dist/zombie.c
docs/book-rev8.pdf
docs/xv6-rev8.pdf
asm.h
bio.c
bootasm.S
bootmain.c
buf.h
BUGS
cat.c
console.c
cuth
date.h
defs.h
dot-bochsrc
echo.c
elf.h
entry.S
entryother.S
exec.c
fcntl.h
file.c
file.h
forktest.c
fs.c
fs.h
gdbutil
grep.c
ide.c
init.c
initcode.S
ioapic.c
kalloc.c
kbd.c
kbd.h
kernel.ld
kill.c
lapic.c
LICENSE
ln.c
log.c
ls.c
main.c
Makefile
memide.c
memlayout.h
mkdir.c
mkfs.c
mmu.h
mp.c
mp.h
Notes
param.h
picirq.c
pipe.c
pr.pl
printf.c
printpcs
proc.c
proc.h
README
rm.c
runoff
runoff.list
runoff.spec
runoff1
sh.c
show1
sign.pl
sleep1.p
spinlock.c
spinlock.h
spinp
stat.h
stressfs.c
string.c
swtch.S
symlink.patch
syscall.c
syscall.h
sysfile.c
sysproc.c
timer.c
toc.ftr
toc.hdr
trap.c
trapasm.S
traps.h
TRICKS
types.h
uart.c
ulib.c
umalloc.c
user.h
usertests.c
usys.S
vectors.pl
vm.c
wc.c
x86.h
zombie.c)
add_executable(xv6 ${SOURCE_FILES})