[KMTESTS:IO]
[reactos.git] / rostests / kmtests / CMakeLists.txt
1
2 include_directories(include)
3
4 #
5 # subdirectories containing special-purpose drivers
6 #
7 add_subdirectory(example)
8 add_subdirectory(kernel32)
9 add_subdirectory(ntos_io)
10 add_subdirectory(ntos_po)
11 add_subdirectory(tcpip)
12
13 list(APPEND COMMON_SOURCE
14 example/GuardedMemory.c
15 rtl/RtlAvlTree.c
16 rtl/RtlException.c
17 rtl/RtlIntSafe.c
18 rtl/RtlMemory.c
19 rtl/RtlRegistry.c
20 rtl/RtlSplayTree.c
21 rtl/RtlUnicodeString.c)
22
23 #
24 # kmtest_drv.sys driver
25 #
26 list(APPEND KMTEST_DRV_SOURCE
27 kmtest_drv/guid.c
28 kmtest_drv/kmtest_drv.c
29 kmtest_drv/testlist.c
30
31 example/Example.c
32 example/KernelType.c
33 npfs/NpfsConnect.c
34 npfs/NpfsCreate.c
35 npfs/NpfsFileInfo.c
36 npfs/NpfsHelpers.c
37 npfs/NpfsReadWrite.c
38 npfs/NpfsVolumeInfo.c
39 ntos_cm/CmSecurity.c
40 ntos_ex/ExCallback.c
41 ntos_ex/ExDoubleList.c
42 ntos_ex/ExFastMutex.c
43 ntos_ex/ExHardError.c
44 ntos_ex/ExInterlocked.c
45 ntos_ex/ExPools.c
46 ntos_ex/ExResource.c
47 ntos_ex/ExSequencedList.c
48 ntos_ex/ExSingleList.c
49 ntos_ex/ExTimer.c
50 ntos_fsrtl/FsRtlExpression.c
51 ntos_fsrtl/FsRtlMcb.c
52 ntos_fsrtl/FsRtlTunnel.c
53 ntos_io/IoCreateFile.c
54 ntos_io/IoDeviceInterface.c
55 ntos_io/IoEvent.c
56 ntos_io/IoFilesystem.c
57 ntos_io/IoInterrupt.c
58 ntos_io/IoIrp.c
59 ntos_io/IoMdl.c
60 ntos_ke/KeApc.c
61 ntos_ke/KeDevQueue.c
62 ntos_ke/KeDpc.c
63 ntos_ke/KeEvent.c
64 ntos_ke/KeGuardedMutex.c
65 ntos_ke/KeIrql.c
66 ntos_ke/KeMutex.c
67 ntos_ke/KeProcessor.c
68 ntos_ke/KeSpinLock.c
69 ntos_ke/KeTimer.c
70 ntos_mm/MmMdl.c
71 ntos_mm/MmReservedMapping.c
72 ntos_mm/MmSection.c
73 ntos_mm/ZwAllocateVirtualMemory.c
74 ntos_mm/ZwCreateSection.c
75 ntos_mm/ZwMapViewOfSection.c
76 ntos_ob/ObHandle.c
77 ntos_ob/ObReference.c
78 ntos_ob/ObType.c
79 ntos_ob/ObTypes.c
80 ntos_ob/ObWait.c
81 ntos_ps/PsNotify.c
82 ntos_se/SeHelpers.c
83 ntos_se/SeInheritance.c
84 ntos_se/SeQueryInfoToken.c
85 ${COMMON_SOURCE}
86
87 kmtest_drv/kmtest_drv.rc)
88
89 add_library(kmtest_drv SHARED ${KMTEST_DRV_SOURCE})
90 set_module_type(kmtest_drv kernelmodedriver)
91 target_link_libraries(kmtest_drv kmtest_printf chkstk memcmp ${PSEH_LIB})
92 add_importlibs(kmtest_drv ntoskrnl hal)
93 add_dependencies(kmtest_drv bugcodes xdk)
94 add_target_compile_definitions(kmtest_drv KMT_KERNEL_MODE NTDDI_VERSION=NTDDI_WS03SP1)
95 #add_pch(kmtest_drv include/kmt_test.h)
96 add_cd_file(TARGET kmtest_drv DESTINATION reactos/bin FOR all)
97
98 add_library(kmtest_printf
99 kmtest_drv/printf_stubs.c
100 ${REACTOS_SOURCE_DIR}/lib/sdk/crt/string/strnlen.c
101 ${REACTOS_SOURCE_DIR}/lib/sdk/crt/string/wcsnlen.c
102 ${REACTOS_SOURCE_DIR}/lib/sdk/crt/printf/streamout.c)
103 add_target_compile_definitions(kmtest_printf _LIBCNT_ _USER32_WSPRINTF wctomb=KmtWcToMb)
104 add_target_include_directories(kmtest_printf ${REACTOS_SOURCE_DIR}/lib/sdk/crt/include)
105
106 #
107 # kmtest.exe loader application
108 #
109
110 list(APPEND KMTEST_SOURCE
111 kmtest/kmtest.c
112 kmtest/service.c
113 kmtest/support.c
114 kmtest/testlist.c
115
116 example/Example_user.c
117 kernel32/FindFile_user.c
118 ntos_io/IoCreateFile_user.c
119 ntos_io/IoDeviceObject_user.c
120 ntos_io/IoReadWrite_user.c
121 ntos_po/PoIrp_user.c
122 tcpip/TcpIp_user.c
123 ${COMMON_SOURCE}
124
125 kmtest/kmtest.rc)
126
127 add_executable(kmtest ${KMTEST_SOURCE})
128 set_module_type(kmtest win32cui)
129 target_link_libraries(kmtest ${PSEH_LIB})
130 add_importlibs(kmtest advapi32 ws2_32 msvcrt kernel32 ntdll)
131 add_target_compile_definitions(kmtest KMT_USER_MODE)
132 #add_pch(kmtest include/kmt_test.h)
133 set_target_properties(kmtest PROPERTIES OUTPUT_NAME "kmtest_")
134 add_cd_file(TARGET kmtest DESTINATION reactos/bin FOR all)
135
136 #
137 # Group targets
138 #
139 add_custom_target(kmtest_drivers)
140 add_dependencies(kmtest_drivers
141 kmtest_drv
142 example_drv
143 findfile_drv
144 iocreatefile_drv
145 iodeviceobject_drv
146 iohelper_drv
147 ioreadwrite_drv
148 poirp_drv
149 tcpip_drv)
150
151 add_custom_target(kmtest_all)
152 add_dependencies(kmtest_all kmtest_drivers kmtest)