[CMAKE] Fix few copy-paste typos in add_pch() calls (#3508)

Follow-up to e898c9e.
This commit is contained in:
Serge Gautherie 2021-03-06 19:11:56 +01:00 committed by GitHub
parent 62b4c61f82
commit 8c18617fa7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View file

@ -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)

View file

@ -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)

View file

@ -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)

View file

@ -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)

View file

@ -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)
#

View file

@ -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)