Minor changes for ATAPI Srb Functions
[reactos.git] / base / system / diskpart / CMakeLists.txt
1
2 list(APPEND SOURCE
3 active.c
4 add.c
5 assign.c
6 attach.c
7 attributes.c
8 automount.c
9 break.c
10 clean.c
11 compact.c
12 convert.c
13 create.c
14 delete.c
15 detach.c
16 detail.c
17 diskpart.c
18 expand.c
19 extend.c
20 filesystems.c
21 format.c
22 gpt.c
23 help.c
24 import.c
25 inactive.c
26 interpreter.c
27 list.c
28 merge.c
29 offline.c
30 online.c
31 partlist.c
32 recover.c
33 remove.c
34 repair.c
35 rescan.c
36 retain.c
37 san.c
38 select.c
39 setid.c
40 shrink.c
41 uniqueid.c
42 diskpart.h)
43
44 add_executable(diskpart ${SOURCE} diskpart.rc)
45 set_module_type(diskpart win32cui UNICODE)
46 add_importlibs(diskpart user32 advapi32 msvcrt kernel32 ntdll)
47
48 if(MSVC)
49 add_importlibs(diskpart ntdll)
50 endif()
51
52 add_pch(diskpart diskpart.h SOURCE)
53 add_cd_file(TARGET diskpart DESTINATION reactos/system32 FOR all)