mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[CMAKE] Fix few copy-paste typos in add_pch() calls (#3508)
Follow-up to e898c9e
.
This commit is contained in:
parent
62b4c61f82
commit
8c18617fa7
6 changed files with 7 additions and 7 deletions
|
@ -14,6 +14,7 @@ list(APPEND COMMON_SOURCE
|
|||
|
||||
add_library(fusion_common STATIC ${COMMON_SOURCE})
|
||||
add_dependencies(fusion_common psdk)
|
||||
add_pch(fusion_common precomp.h COMMON_SOURCE)
|
||||
|
||||
add_library(fusion MODULE
|
||||
version.rc
|
||||
|
@ -22,7 +23,6 @@ add_library(fusion MODULE
|
|||
set_module_type(fusion win32dll)
|
||||
target_link_libraries(fusion fusion_common uuid wine)
|
||||
add_importlibs(fusion bcrypt advapi32 dbghelp shlwapi user32 msvcrt kernel32 ntdll)
|
||||
add_pch(fusion_common precomp.h COMMON_SOURCE)
|
||||
add_cd_file(TARGET fusion DESTINATION reactos/Microsoft.NET/Framework/v1.0.3705 FOR all)
|
||||
add_cd_file(TARGET fusion DESTINATION reactos/system32 FOR all)
|
||||
|
||||
|
|
|
@ -10,5 +10,5 @@ set_module_type(fltmgr_create kernelmodedriver)
|
|||
target_link_libraries(fltmgr_create kmtest_printf ${PSEH_LIB})
|
||||
add_importlibs(fltmgr_create fltmgr ntoskrnl hal)
|
||||
target_compile_definitions(fltmgr_create PRIVATE KMT_STANDALONE_DRIVER KMT_FILTER_DRIVER NTDDI_VERSION=NTDDI_WS03SP1)
|
||||
#add_pch(example_drv ../include/kmt_test.h)
|
||||
#add_pch(fltmgr_create ../include/kmt_test.h)
|
||||
add_rostests_file(TARGET fltmgr_create)
|
||||
|
|
|
@ -10,5 +10,5 @@ set_module_type(FltMgrLoad_drv kernelmodedriver)
|
|||
target_link_libraries(FltMgrLoad_drv kmtest_printf ${PSEH_LIB})
|
||||
add_importlibs(FltMgrLoad_drv fltmgr ntoskrnl hal)
|
||||
target_compile_definitions(FltMgrLoad_drv PRIVATE KMT_STANDALONE_DRIVER KMT_FILTER_DRIVER NTDDI_VERSION=NTDDI_WS03SP1)
|
||||
#add_pch(example_drv ../include/kmt_test.h)
|
||||
#add_pch(FltMgrLoad_drv ../include/kmt_test.h)
|
||||
add_rostests_file(TARGET FltMgrLoad_drv)
|
||||
|
|
|
@ -11,5 +11,5 @@ set_module_type(fltmgrreg_drv kernelmodedriver)
|
|||
target_link_libraries(fltmgrreg_drv kmtest_printf ${PSEH_LIB})
|
||||
add_importlibs(fltmgrreg_drv fltmgr ntoskrnl hal)
|
||||
target_compile_definitions(fltmgrreg_drv PRIVATE KMT_STANDALONE_DRIVER KMT_FILTER_DRIVER NTDDI_VERSION=NTDDI_WS03SP1)
|
||||
#add_pch(example_drv ../include/kmt_test.h)
|
||||
#add_pch(fltmgrreg_drv ../include/kmt_test.h)
|
||||
add_rostests_file(TARGET fltmgrreg_drv)
|
||||
|
|
|
@ -28,7 +28,7 @@ set_module_type(cccopywrite_drv kernelmodedriver)
|
|||
target_link_libraries(cccopywrite_drv kmtest_printf ${PSEH_LIB})
|
||||
add_importlibs(cccopywrite_drv ntoskrnl hal)
|
||||
target_compile_definitions(cccopywrite_drv PRIVATE KMT_STANDALONE_DRIVER)
|
||||
#add_pch(cccopyread_drv ../include/kmt_test.h)
|
||||
#add_pch(cccopywrite_drv ../include/kmt_test.h)
|
||||
add_rostests_file(TARGET cccopywrite_drv)
|
||||
|
||||
#
|
||||
|
@ -73,7 +73,7 @@ set_module_type(ccpinread_drv kernelmodedriver)
|
|||
target_link_libraries(ccpinread_drv kmtest_printf ${PSEH_LIB})
|
||||
add_importlibs(ccpinread_drv ntoskrnl hal)
|
||||
target_compile_definitions(ccpinread_drv PRIVATE KMT_STANDALONE_DRIVER)
|
||||
#add_pch(ccmapdata_drv ../include/kmt_test.h)
|
||||
#add_pch(ccpinread_drv ../include/kmt_test.h)
|
||||
add_rostests_file(TARGET ccpinread_drv)
|
||||
|
||||
#
|
||||
|
|
|
@ -12,5 +12,5 @@ set_module_type(tcpip_drv kernelmodedriver)
|
|||
target_link_libraries(tcpip_drv kmtest_printf ${PSEH_LIB})
|
||||
add_importlibs(tcpip_drv ntoskrnl hal)
|
||||
target_compile_definitions(tcpip_drv PRIVATE KMT_STANDALONE_DRIVER)
|
||||
#add_pch(example_drv ../include/kmt_test.h)
|
||||
#add_pch(tcpip_drv ../include/kmt_test.h)
|
||||
add_rostests_file(TARGET tcpip_drv)
|
||||
|
|
Loading…
Reference in a new issue