[CMAKE]
[reactos.git] / drivers / filesystems / ntfs / CMakeLists.txt
1
2 list(APPEND SOURCE
3 attrib.c
4 blockdev.c
5 close.c
6 create.c
7 dirctl.c
8 dispatch.c
9 fastio.c
10 fcb.c
11 finfo.c
12 fsctl.c
13 mft.c
14 misc.c
15 ntfs.c
16 rw.c
17 volinfo.c
18 ntfs.rc)
19
20 add_library(ntfs SHARED ${CMAKE_CURRENT_BINARY_DIR}/ntfs_ntfs.h.gch ${SOURCE})
21
22 set_module_type(ntfs kernelmodedriver)
23 add_importlibs(ntfs ntoskrnl hal)
24
25 add_pch(ntfs ${CMAKE_CURRENT_SOURCE_DIR}/ntfs.h ${SOURCE})
26
27 add_minicd_target(ntfs reactos)
28 add_livecd_target(ntfs reactos/system32/drivers)