repo.or.cz
/
planlOS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
More preparations for compiling on amd64.
[planlOS.git]
/
system
/
modules
/
ata
/
CMakeLists.txt
blob
50769c93da5179e4d2e455d362037961232b136c
1
2
set (SRC
3
ata.c
4
atapi.c
5
device.c
6
libpartition.c
7
main.c
8
request.c
9
../cdi/driver_entry.c
10
)
11
12
set(LIBRARY_OUTPUT_PATH ../../../build/boot)
13
add_definitions("-DDRIVER_ENTRY=init_ata")
14
add_library(ata SHARED ${SRC})
15
target_link_libraries(ata cdi)
16
17
add_object(ata)
18