[KMTESTS:PO]
[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/IoInterrupt.c
57 ntos_io/IoIrp.c
58 ntos_io/IoMdl.c
59 ntos_ke/KeApc.c
60 ntos_ke/KeDevQueue.c
61 ntos_ke/KeDpc.c
62 ntos_ke/KeEvent.c
63 ntos_ke/KeGuardedMutex.c
64 ntos_ke/KeIrql.c
65 ntos_ke/KeMutex.c
66 ntos_ke/KeProcessor.c
67 ntos_ke/KeSpinLock.c
68 ntos_ke/KeTimer.c
69 ntos_mm/MmMdl.c
70 ntos_mm/MmReservedMapping.c
71 ntos_mm/MmSection.c
72 ntos_mm/ZwAllocateVirtualMemory.c
73 ntos_mm/ZwCreateSection.c
74 ntos_mm/ZwMapViewOfSection.c
75 ntos_ob/ObReference.c
76 ntos_ob/ObType.c
77 ntos_ob/ObTypes.c
78 ntos_ob/ObWait.c
79 ntos_ps/PsNotify.c
80 ntos_se/SeHelpers.c
81 ntos_se/SeInheritance.c
82 ntos_se/SeQueryInfoToken.c
83 ${COMMON_SOURCE}
84
85 kmtest_drv/kmtest_drv.rc)
86
87 add_library(kmtest_drv SHARED ${KMTEST_DRV_SOURCE})
88 set_module_type(kmtest_drv kernelmodedriver)
89 target_link_libraries(kmtest_drv kmtest_printf chkstk memcmp ${PSEH_LIB})
90 add_importlibs(kmtest_drv ntoskrnl hal)
91 add_dependencies(kmtest_drv bugcodes xdk)
92 add_target_compile_definitions(kmtest_drv KMT_KERNEL_MODE NTDDI_VERSION=NTDDI_WS03SP1)
93 #add_pch(kmtest_drv include/kmt_test.h)
94 add_cd_file(TARGET kmtest_drv DESTINATION reactos/bin FOR all)
95
96 add_library(kmtest_printf
97 kmtest_drv/printf_stubs.c
98 ${REACTOS_SOURCE_DIR}/lib/sdk/crt/string/strnlen.c
99 ${REACTOS_SOURCE_DIR}/lib/sdk/crt/string/wcsnlen.c
100 ${REACTOS_SOURCE_DIR}/lib/sdk/crt/printf/streamout.c)
101 add_target_compile_definitions(kmtest_printf _LIBCNT_ _USER32_WSPRINTF wctomb=KmtWcToMb)
102 add_target_include_directories(kmtest_printf ${REACTOS_SOURCE_DIR}/lib/sdk/crt/include)
103
104 #
105 # kmtest.exe loader application
106 #
107
108 list(APPEND KMTEST_SOURCE
109 kmtest/kmtest.c
110 kmtest/service.c
111 kmtest/support.c
112 kmtest/testlist.c
113
114 example/Example_user.c
115 kernel32/FindFile_user.c
116 ntos_io/IoCreateFile_user.c
117 ntos_io/IoDeviceObject_user.c
118 ntos_io/IoReadWrite_user.c
119 ntos_po/PoIrp_user.c
120 tcpip/TcpIp_user.c
121 ${COMMON_SOURCE}
122
123 kmtest/kmtest.rc)
124
125 add_executable(kmtest ${KMTEST_SOURCE})
126 set_module_type(kmtest win32cui)
127 target_link_libraries(kmtest ${PSEH_LIB})
128 add_importlibs(kmtest advapi32 ws2_32 msvcrt kernel32 ntdll)
129 add_target_compile_definitions(kmtest KMT_USER_MODE)
130 #add_pch(kmtest include/kmt_test.h)
131 set_target_properties(kmtest PROPERTIES OUTPUT_NAME "kmtest_")
132 add_cd_file(TARGET kmtest DESTINATION reactos/bin FOR all)
133
134 #
135 # Group targets
136 #
137 add_custom_target(kmtest_drivers)
138 add_dependencies(kmtest_drivers
139 kmtest_drv
140 example_drv
141 findfile_drv
142 iocreatefile_drv
143 iodeviceobject_drv
144 iohelper_drv
145 ioreadwrite_drv
146 poirp_drv
147 tcpip_drv)
148
149 add_custom_target(kmtest_all)
150 add_dependencies(kmtest_all kmtest_drivers kmtest)